diff options
Diffstat (limited to 'test/functional/provider/define_spec.lua')
-rw-r--r-- | test/functional/provider/define_spec.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/provider/define_spec.lua b/test/functional/provider/define_spec.lua index 59422d8224..5f51ad76e6 100644 --- a/test/functional/provider/define_spec.lua +++ b/test/functional/provider/define_spec.lua @@ -1,7 +1,8 @@ local helpers = require('test.functional.helpers')(after_each) -local eval, command, nvim = helpers.eval, helpers.command, helpers.nvim +local eval, command = helpers.eval, helpers.command local eq, run, stop = helpers.eq, helpers.run, helpers.stop local clear = helpers.clear +local meths = helpers.meths local function get_prefix(sync) if sync then @@ -361,7 +362,7 @@ local function function_specs_for(fn, sync, first_arg_factory, init) end local function channel() - return nvim('get_api_info')[1] + return meths.nvim_get_api_info()[1] end local function host() |