diff options
Diffstat (limited to 'test/functional/eval/wait_spec.lua')
-rw-r--r-- | test/functional/eval/wait_spec.lua | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/test/functional/eval/wait_spec.lua b/test/functional/eval/wait_spec.lua index c454774bbd..5bb27131f5 100644 --- a/test/functional/eval/wait_spec.lua +++ b/test/functional/eval/wait_spec.lua @@ -64,18 +64,15 @@ describe('wait()', function() nvim('set_var', 'counter', 0) eq(0, call('wait', 1000, 'Count() >= 5', 5)) eq(5, nvim('get_var', 'counter')) - - nvim('set_var', 'counter', 0) - eq(0, call('wait', 1000, 'Count() >= 5', 0)) - eq(5, nvim('get_var', 'counter')) end) it('errors out on invalid timeout value', function() - expect_err('E475: Invalid argument', call, 'wait', '', 1) + expect_err('Invalid value for argument', call, 'wait', '', 1) end) it('errors out on invalid interval', function() - expect_err('E475: Invalid argument', call, 'wait', 0, 1, -1) - expect_err('E475: Invalid argument', call, 'wait', 0, 1, '') + expect_err('Invalid value for argument', call, 'wait', 0, 1, -1) + expect_err('Invalid value for argument', call, 'wait', 0, 1, 0) + expect_err('Invalid value for argument', call, 'wait', 0, 1, '') end) end) |