diff options
Diffstat (limited to 'test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua')
-rw-r--r-- | test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua b/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua index 89c5b3cbb2..99cb64c7e5 100644 --- a/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua +++ b/test/functional/legacy/044_099_regexp_multibyte_magic_spec.lua @@ -3,9 +3,10 @@ -- -- This test contains both "test44" and "test99" from the old test suite. -local t = require('test.functional.testutil')() -local feed, insert = t.feed, t.insert -local clear, feed_command, expect = t.clear, t.feed_command, t.expect +local n = require('test.functional.testnvim')() + +local feed, insert = n.feed, n.insert +local clear, feed_command, expect = n.clear, n.feed_command, n.expect -- Runs the test protocol with the given 'regexpengine' setting. In the old test -- suite the test protocol was duplicated in test44 and test99, the only |