diff options
Diffstat (limited to 'test/functional/ex_cmds/edit_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/edit_spec.lua | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/functional/ex_cmds/edit_spec.lua b/test/functional/ex_cmds/edit_spec.lua index c51b860aeb..39849a202f 100644 --- a/test/functional/ex_cmds/edit_spec.lua +++ b/test/functional/ex_cmds/edit_spec.lua @@ -1,9 +1,11 @@ -local t = require('test.functional.testutil')() -local eq, command, fn = t.eq, t.command, t.fn +local t = require('test.testutil') +local n = require('test.functional.testnvim')() + +local eq, command, fn = t.eq, n.command, n.fn local ok = t.ok local matches = t.matches -local clear = t.clear -local feed = t.feed +local clear = n.clear +local feed = n.feed describe(':edit', function() before_each(function() |