Skip to content
Snippets Groups Projects
Commit 444355dd authored by Vladimir Davydov's avatar Vladimir Davydov
Browse files

test: fix box/bitset test failure

Reproduce file:

- [box/access.test.lua, null]
- [box/iterator.test.lua, null]
- [box/bitset.test.lua, null]

The issue happens, because box/bitset.lua:dump() uses iterate(), which
gets cleared by box/iterator test. Fix this by using utils.iterate()
instead.
parent e72867cb
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ function drop_space()
end
function dump(...)
return iterate('tweedledum', 'bitset', 1, 2, ...)
return utils.iterate('tweedledum', 'bitset', 1, 2, ...)
end
function test_insert_delete(n)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment