diff options
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 65da278f9e..f6d09e6139 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -364,7 +364,7 @@ end local function curbuf(method, ...) if not method then - return nvim('get_current_buffer') + return nvim('get_current_buf') end return buffer(method, 0, ...) end @@ -387,7 +387,7 @@ end local function curwin(method, ...) if not method then - return nvim('get_current_window') + return nvim('get_current_win') end return window(method, 0, ...) end |