Skip to content
Snippets Groups Projects
Commit 8a030c4f authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Fix a buildbot test failure.

parent ae240afc
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -150,9 +150,9 @@ exec admin "lua box.fiber.sleep(box, 0.001)"
exec admin "lua f = box.fiber.self()"
exec admin "lua old_id = f:id()"
exec admin "lua box.fiber.cancel(f)"
exec admin "lua box.fiber.self():id() == old_id + 2"
exec admin "lua box.fiber.self():id() == old_id + 1"
exec admin "lua box.fiber.cancel(box.fiber.self())"
exec admin "lua box.fiber.self():id() == old_id + 3"
exec admin "lua box.fiber.self():id() == old_id + 2"
exec admin "lua g = box.fiber.self()"
exec admin "lua f==g"
exec admin "lua function r() f = box.fiber.create(r) return (box.fiber.resume(f)) end"
......
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