diff options
Diffstat (limited to 'test/functional/ui/highlight_spec.lua')
-rw-r--r-- | test/functional/ui/highlight_spec.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua index 57d0f2f590..c6f1a680e6 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -1,13 +1,13 @@ -local helpers = require('test.functional.helpers')(after_each) +local t = require('test.functional.testutil')(after_each) local Screen = require('test.functional.ui.screen') local os = require('os') -local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert -local command, exec = helpers.command, helpers.exec -local eval = helpers.eval -local feed_command, eq = helpers.feed_command, helpers.eq -local fn = helpers.fn -local api = helpers.api -local exec_lua = helpers.exec_lua +local clear, feed, insert = t.clear, t.feed, t.insert +local command, exec = t.command, t.exec +local eval = t.eval +local feed_command, eq = t.feed_command, t.eq +local fn = t.fn +local api = t.api +local exec_lua = t.exec_lua describe('colorscheme compatibility', function() before_each(function() @@ -2196,7 +2196,7 @@ describe("'winhighlight' highlight", function() ]], } - helpers.assert_alive() + t.assert_alive() end) it('can redraw statusline on cursor movement', function() |