aboutsummaryrefslogtreecommitdiff
path: root/test/functional/editor/lang_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/editor/lang_spec.lua')
-rw-r--r--test/functional/editor/lang_spec.lua12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/functional/editor/lang_spec.lua b/test/functional/editor/lang_spec.lua
index 0e11a53999..74d83bcfa8 100644
--- a/test/functional/editor/lang_spec.lua
+++ b/test/functional/editor/lang_spec.lua
@@ -1,8 +1,10 @@
-local t = require('test.functional.testutil')()
-local clear, insert, eq = t.clear, t.insert, t.eq
-local command, expect = t.command, t.expect
-local feed, eval = t.feed, t.eval
-local exc_exec = t.exc_exec
+local t = require('test.testutil')
+local n = require('test.functional.testnvim')()
+
+local clear, insert, eq = n.clear, n.insert, t.eq
+local command, expect = n.command, n.expect
+local feed, eval = n.feed, n.eval
+local exc_exec = n.exc_exec
describe('gu and gU', function()
before_each(clear)