mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
test: rename (meths, funcs) -> (api, fn)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
local helpers = require('test.functional.helpers')(after_each)
|
||||
local clear, eq, command, funcs = helpers.clear, helpers.eq, helpers.command, helpers.funcs
|
||||
local clear, eq, command, fn = helpers.clear, helpers.eq, helpers.command, helpers.fn
|
||||
|
||||
describe(':z^', function()
|
||||
before_each(clear)
|
||||
|
||||
it('correctly sets the cursor after :z^', function()
|
||||
command('z^')
|
||||
eq(1, funcs.line('.'))
|
||||
eq(1, fn.line('.'))
|
||||
end)
|
||||
end)
|
||||
|
||||
Reference in New Issue
Block a user