diff options
Diffstat (limited to 'test/functional/legacy/normal_spec.lua')
-rw-r--r-- | test/functional/legacy/normal_spec.lua | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/test/functional/legacy/normal_spec.lua b/test/functional/legacy/normal_spec.lua index 43019d4216..5158ca3009 100644 --- a/test/functional/legacy/normal_spec.lua +++ b/test/functional/legacy/normal_spec.lua @@ -1,11 +1,13 @@ -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 exec = t.exec -local feed = t.feed -local api = t.api + +local clear = n.clear +local exec = n.exec +local feed = n.feed +local api = n.api local eq = t.eq -local fn = t.fn +local fn = n.fn describe('normal', function() local screen |