diff options
Diffstat (limited to 'test/functional/legacy/nested_function_spec.lua')
-rw-r--r-- | test/functional/legacy/nested_function_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/legacy/nested_function_spec.lua b/test/functional/legacy/nested_function_spec.lua index 7a2ba1ecf2..3631b76a3d 100644 --- a/test/functional/legacy/nested_function_spec.lua +++ b/test/functional/legacy/nested_function_spec.lua @@ -1,8 +1,8 @@ -- Tests for nested function. -local helpers = require('test.functional.helpers')(after_each) -local clear, insert = helpers.clear, helpers.insert -local command, expect, source = helpers.command, helpers.expect, helpers.source +local t = require('test.functional.testutil')(after_each) +local clear, insert = t.clear, t.insert +local command, expect, source = t.command, t.expect, t.source describe('test_nested_function', function() setup(clear) |