diff options
Diffstat (limited to 'test/functional/legacy/082_string_comparison_spec.lua')
-rw-r--r-- | test/functional/legacy/082_string_comparison_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/legacy/082_string_comparison_spec.lua b/test/functional/legacy/082_string_comparison_spec.lua index 311822c34f..83d7179014 100644 --- a/test/functional/legacy/082_string_comparison_spec.lua +++ b/test/functional/legacy/082_string_comparison_spec.lua @@ -1,9 +1,9 @@ -- Tests for case-insensitive UTF-8 comparisons (utf_strnicmp() in mbyte.c) -- Also test "g~ap". -local helpers = require('test.functional.helpers')(after_each) -local feed, source = helpers.feed, helpers.source -local clear, feed_command, expect = helpers.clear, helpers.feed_command, helpers.expect +local t = require('test.functional.testutil')(after_each) +local feed, source = t.feed, t.source +local clear, feed_command, expect = t.clear, t.feed_command, t.expect describe('case-insensitive string comparison in UTF-8', function() setup(clear) |