diff options
Diffstat (limited to 'test/functional/legacy/utf8_spec.lua')
-rw-r--r-- | test/functional/legacy/utf8_spec.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/legacy/utf8_spec.lua b/test/functional/legacy/utf8_spec.lua index 67a4bec4c5..155352a0c2 100644 --- a/test/functional/legacy/utf8_spec.lua +++ b/test/functional/legacy/utf8_spec.lua @@ -1,11 +1,11 @@ -- Tests for Unicode manipulations -local helpers = require('test.functional.helpers')(after_each) -local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert -local command, expect = helpers.command, helpers.expect -local eq, eval = helpers.eq, helpers.eval -local source = helpers.source -local poke_eventloop = helpers.poke_eventloop +local t = require('test.functional.testutil')(after_each) +local clear, feed, insert = t.clear, t.feed, t.insert +local command, expect = t.command, t.expect +local eq, eval = t.eq, t.eval +local source = t.source +local poke_eventloop = t.poke_eventloop describe('utf8', function() before_each(clear) |