aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/072_undo_file_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/legacy/072_undo_file_spec.lua')
-rw-r--r--test/functional/legacy/072_undo_file_spec.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/legacy/072_undo_file_spec.lua b/test/functional/legacy/072_undo_file_spec.lua
index 80665027c3..f7185dacff 100644
--- a/test/functional/legacy/072_undo_file_spec.lua
+++ b/test/functional/legacy/072_undo_file_spec.lua
@@ -2,9 +2,10 @@
-- Since this script is sourced we need to explicitly break changes up in
-- undo-able pieces. Do that by setting 'undolevels'.
-local helpers = require('test.functional.helpers')(after_each)
-local feed, insert = helpers.feed, helpers.insert
-local clear, feed_command, expect = helpers.clear, helpers.feed_command, helpers.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
describe('72', function()
setup(clear)