diff options
Diffstat (limited to 'test/functional/legacy/visual_spec.lua')
-rw-r--r-- | test/functional/legacy/visual_spec.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/legacy/visual_spec.lua b/test/functional/legacy/visual_spec.lua index 9fa22c7d87..ab2213b2fc 100644 --- a/test/functional/legacy/visual_spec.lua +++ b/test/functional/legacy/visual_spec.lua @@ -1,9 +1,9 @@ -local t = require('test.functional.testutil')() - +local n = require('test.functional.testnvim')() local Screen = require('test.functional.ui.screen') -local clear = t.clear -local feed = t.feed -local exec = t.exec + +local clear = n.clear +local feed = n.feed +local exec = n.exec before_each(clear) |