diff options
Diffstat (limited to 'test/functional/legacy/023_edit_arguments_spec.lua')
-rw-r--r-- | test/functional/legacy/023_edit_arguments_spec.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/functional/legacy/023_edit_arguments_spec.lua b/test/functional/legacy/023_edit_arguments_spec.lua index 14037db82d..97dc5b0153 100644 --- a/test/functional/legacy/023_edit_arguments_spec.lua +++ b/test/functional/legacy/023_edit_arguments_spec.lua @@ -1,9 +1,10 @@ -- Tests for complicated + argument to :edit command -local t = require('test.functional.testutil')() -local clear, insert = t.clear, t.insert -local command, expect = t.command, t.expect -local poke_eventloop = t.poke_eventloop +local n = require('test.functional.testnvim')() + +local clear, insert = n.clear, n.insert +local command, expect = n.command, n.expect +local poke_eventloop = n.poke_eventloop describe(':edit', function() setup(clear) |