aboutsummaryrefslogtreecommitdiff
path: root/test/functional/editor/langmap_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/editor/langmap_spec.lua')
-rw-r--r--test/functional/editor/langmap_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/editor/langmap_spec.lua b/test/functional/editor/langmap_spec.lua
index 5ad81ce5c2..b2a4b21a89 100644
--- a/test/functional/editor/langmap_spec.lua
+++ b/test/functional/editor/langmap_spec.lua
@@ -4,7 +4,7 @@ local eq, neq, call = helpers.eq, helpers.neq, helpers.call
local eval, feed, clear = helpers.eval, helpers.feed, helpers.clear
local command, insert, expect = helpers.command, helpers.insert, helpers.expect
local feed_command = helpers.feed_command
-local curwin = helpers.meths.nvim_get_current_win
+local curwin = helpers.api.nvim_get_current_win
describe("'langmap'", function()
before_each(function()
@@ -215,7 +215,7 @@ describe("'langmap'", function()
feed('qa' .. command_string .. 'q')
expect(expect_string)
eq(
- expect_macro or helpers.funcs.nvim_replace_termcodes(command_string, true, true, true),
+ expect_macro or helpers.fn.nvim_replace_termcodes(command_string, true, true, true),
eval('@a')
)
if setup_function then