diff options
Diffstat (limited to 'test/functional/legacy/join_spec.lua')
-rw-r--r-- | test/functional/legacy/join_spec.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/functional/legacy/join_spec.lua b/test/functional/legacy/join_spec.lua index 8a182efb03..397a714b2f 100644 --- a/test/functional/legacy/join_spec.lua +++ b/test/functional/legacy/join_spec.lua @@ -1,8 +1,10 @@ -- Test for joining lines -local t = require('test.functional.testutil')() -local clear, eq = t.clear, t.eq -local eval, command = t.eval, t.command +local t = require('test.testutil') +local n = require('test.functional.testnvim')() + +local clear, eq = n.clear, t.eq +local eval, command = n.eval, n.command describe('joining lines', function() before_each(clear) |