aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/095_regexp_multibyte_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/legacy/095_regexp_multibyte_spec.lua')
-rw-r--r--test/functional/legacy/095_regexp_multibyte_spec.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/legacy/095_regexp_multibyte_spec.lua b/test/functional/legacy/095_regexp_multibyte_spec.lua
index fad0dc8023..296bf00b58 100644
--- a/test/functional/legacy/095_regexp_multibyte_spec.lua
+++ b/test/functional/legacy/095_regexp_multibyte_spec.lua
@@ -3,9 +3,10 @@
-- A pattern that gives the expected result produces OK, so that we know it was
-- actually tried.
-local helpers = require('test.functional.helpers')(after_each)
-local insert, source = helpers.insert, helpers.source
-local clear, expect = helpers.clear, helpers.expect
+local n = require('test.functional.testnvim')()
+
+local insert, source = n.insert, n.source
+local clear, expect = n.clear, n.expect
describe('regex with multi-byte', function()
setup(clear)