aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-28 20:37:52 +0200
committerGitHub <noreply@github.com>2017-04-28 20:37:52 +0200
commit129f107c0c26fbf371bcf165ec20eb13356bfb8e (patch)
tree864bf25c65c6cfcd4e17c0ebd04afdad1342c268 /test/functional/helpers.lua
parent7044aa6e8256844bc1bd23eb61d4a41ca6d418d0 (diff)
parent8f59d1483934f91011b755406251136c406e77f6 (diff)
downloadrneovim-129f107c0c26fbf371bcf165ec20eb13356bfb8e.tar.gz
rneovim-129f107c0c26fbf371bcf165ec20eb13356bfb8e.tar.bz2
rneovim-129f107c0c26fbf371bcf165ec20eb13356bfb8e.zip
Merge #6247 'api: nvim_get_mode()'
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index 0f30910450..2919165280 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -385,9 +385,9 @@ local function curbuf(method, ...)
end
local function wait()
- -- Execute 'vim_eval' (a deferred function) to block
+ -- Execute 'nvim_eval' (a deferred function) to block
-- until all pending input is processed.
- session:request('vim_eval', '1')
+ session:request('nvim_eval', '1')
end
-- sleeps the test runner (_not_ the nvim instance)