functests: Try sleeping a bit more

This commit is contained in:
ZyX 2017-03-28 08:18:23 +03:00
parent b9603218be
commit 46efe14473

View File

@ -49,7 +49,7 @@ describe('timers', function()
it('works with zero timeout', function()
-- timer_start does still not invoke the callback immediately
eq(0,eval("[timer_start(0, 'MyHandler', {'repeat': 1000}), g:val][1]"))
run(nil, nil, nil, 300)
run(nil, nil, nil, 400)
eq(1000,eval("g:val"))
end)