diff options
Diffstat (limited to 'test/functional/example_spec.lua')
-rw-r--r-- | test/functional/example_spec.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/functional/example_spec.lua b/test/functional/example_spec.lua index a424d6a1fe..8db5c3d867 100644 --- a/test/functional/example_spec.lua +++ b/test/functional/example_spec.lua @@ -1,12 +1,13 @@ -- To run this test: -- TEST_FILE=test/functional/example_spec.lua make functionaltest -local t = require('test.functional.testutil')() +local t = require('test.testutil') +local n = require('test.functional.testnvim')() local Screen = require('test.functional.ui.screen') -local clear = t.clear -local command = t.command +local clear = n.clear +local command = n.command local eq = t.eq -local feed = t.feed +local feed = n.feed describe('example', function() local screen |