diff options
Diffstat (limited to 'test/functional/ex_cmds/grep_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/grep_spec.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/ex_cmds/grep_spec.lua b/test/functional/ex_cmds/grep_spec.lua index 328064ed3c..f7d0f43c62 100644 --- a/test/functional/ex_cmds/grep_spec.lua +++ b/test/functional/ex_cmds/grep_spec.lua @@ -1,5 +1,7 @@ -local t = require('test.functional.testutil')() -local clear, feed_command, feed, ok, eval = t.clear, t.feed_command, t.feed, t.ok, t.eval +local t = require('test.testutil') +local n = require('test.functional.testnvim')() + +local clear, feed_command, feed, ok, eval = n.clear, n.feed_command, n.feed, t.ok, n.eval describe(':grep', function() before_each(clear) |