diff options
Diffstat (limited to 'test/functional/ex_cmds/highlight_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/highlight_spec.lua | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/test/functional/ex_cmds/highlight_spec.lua b/test/functional/ex_cmds/highlight_spec.lua index a34e9c1659..3cb6cc2579 100644 --- a/test/functional/ex_cmds/highlight_spec.lua +++ b/test/functional/ex_cmds/highlight_spec.lua @@ -1,11 +1,13 @@ +local t = require('test.testutil') +local n = require('test.functional.testnvim')() local Screen = require('test.functional.ui.screen') -local t = require('test.functional.testutil')() -local eq, command = t.eq, t.command -local clear = t.clear -local eval, exc_exec = t.eval, t.exc_exec -local exec = t.exec -local fn = t.fn -local api = t.api + +local eq, command = t.eq, n.command +local clear = n.clear +local eval, exc_exec = n.eval, n.exc_exec +local exec = n.exec +local fn = n.fn +local api = n.api describe(':highlight', function() local screen |