diff options
Diffstat (limited to 'test/functional/example_spec.lua')
-rw-r--r-- | test/functional/example_spec.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/example_spec.lua b/test/functional/example_spec.lua index 5fc55f4aab..ddc55155bf 100644 --- a/test/functional/example_spec.lua +++ b/test/functional/example_spec.lua @@ -1,12 +1,12 @@ -- To run this test: -- TEST_FILE=test/functional/example_spec.lua make functionaltest -local helpers = require('test.functional.helpers')(after_each) +local t = require('test.functional.testutil')(after_each) local Screen = require('test.functional.ui.screen') -local clear = helpers.clear -local command = helpers.command -local eq = helpers.eq -local feed = helpers.feed +local clear = t.clear +local command = t.command +local eq = t.eq +local feed = t.feed describe('example', function() local screen |