diff options
Diffstat (limited to 'test/functional/vimscript/sort_spec.lua')
-rw-r--r-- | test/functional/vimscript/sort_spec.lua | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/test/functional/vimscript/sort_spec.lua b/test/functional/vimscript/sort_spec.lua index 539b74984c..c8c1651ed8 100644 --- a/test/functional/vimscript/sort_spec.lua +++ b/test/functional/vimscript/sort_spec.lua @@ -1,13 +1,14 @@ -local t = require('test.functional.testutil')() +local t = require('test.testutil') +local n = require('test.functional.testnvim')() local eq = t.eq local NIL = vim.NIL -local eval = t.eval -local clear = t.clear -local api = t.api -local fn = t.fn -local command = t.command -local exc_exec = t.exc_exec +local eval = n.eval +local clear = n.clear +local api = n.api +local fn = n.fn +local command = n.command +local exc_exec = n.exc_exec local pcall_err = t.pcall_err before_each(clear) |