diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-04-21 10:59:06 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-04-21 14:21:26 +0200 |
commit | 48f0542ad6f923443ab4bba858aae2d9558f8d76 (patch) | |
tree | 3a27c8826e6e05be56696aaae126f7940e71fa36 /test/functional/ex_cmds/ctrl_c_spec.lua | |
parent | 9cc97896813fa4f40a4e37b6f72284cdb10c4195 (diff) | |
download | rneovim-48f0542ad6f923443ab4bba858aae2d9558f8d76.tar.gz rneovim-48f0542ad6f923443ab4bba858aae2d9558f8d76.tar.bz2 rneovim-48f0542ad6f923443ab4bba858aae2d9558f8d76.zip |
tests: detect invalid helpers.sleep
Diffstat (limited to 'test/functional/ex_cmds/ctrl_c_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/ctrl_c_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/ctrl_c_spec.lua b/test/functional/ex_cmds/ctrl_c_spec.lua index 993bfa0dba..091a008814 100644 --- a/test/functional/ex_cmds/ctrl_c_spec.lua +++ b/test/functional/ex_cmds/ctrl_c_spec.lua @@ -41,7 +41,7 @@ describe("CTRL-C (mapped)", function() local function test_ctrl_c(ms) feed(":global/^/p<CR>") - helpers.sleep(ms) + screen:sleep(ms) feed("<C-C>") screen:expect([[Interrupt]], nil, nil, nil, true) end |