diff options
Diffstat (limited to 'test/functional/vimscript/uniq_spec.lua')
-rw-r--r-- | test/functional/vimscript/uniq_spec.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/functional/vimscript/uniq_spec.lua b/test/functional/vimscript/uniq_spec.lua index 6ef6dd9960..4e1ef699a4 100644 --- a/test/functional/vimscript/uniq_spec.lua +++ b/test/functional/vimscript/uniq_spec.lua @@ -1,9 +1,10 @@ -local t = require('test.functional.testutil')() +local t = require('test.testutil') +local n = require('test.functional.testnvim')() local eq = t.eq -local clear = t.clear -local command = t.command -local exc_exec = t.exc_exec +local clear = n.clear +local command = n.command +local exc_exec = n.exc_exec local pcall_err = t.pcall_err before_each(clear) |