util.iterators tests: Check value matches expected [luacheck]

This commit is contained in:
Matthew Wild 2018-09-21 14:30:20 +01:00
parent c65893de6e
commit f38c79e95a

View file

@ -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);