mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.iterators tests: Check value matches expected [luacheck]
This commit is contained in:
parent
c65893de6e
commit
f38c79e95a
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ describe("util.iterators", function ()
|
|||
if last_key then
|
||||
assert(k > last_key, "Expected "..k.." > "..last_key)
|
||||
end
|
||||
assert.equal(orig[k], v);
|
||||
last_key = k;
|
||||
end
|
||||
assert.equal("d", last_key);
|
||||
|
@ -35,6 +36,7 @@ describe("util.iterators", function ()
|
|||
if last_key then
|
||||
assert(k < last_key, "Expected "..k.." > "..last_key)
|
||||
end
|
||||
assert.equal(orig[k], v);
|
||||
last_key = k;
|
||||
end
|
||||
assert.equal("a", last_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue