aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript/null_spec.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-15 18:38:46 +0800
committerGitHub <noreply@github.com>2022-08-15 18:38:46 +0800
commitd33424983312806fb683eaa6bd720fe418c1299e (patch)
tree1b45b1ba5c3fa4ed66dc74dce66acfa27e761524 /test/functional/vimscript/null_spec.lua
parent9a3877ff9d4db15189b171b4a487d57768abf0a9 (diff)
parent55da52963b6e13ecc402b6574cf3bd396d11d23d (diff)
downloadrneovim-d33424983312806fb683eaa6bd720fe418c1299e.tar.gz
rneovim-d33424983312806fb683eaa6bd720fe418c1299e.tar.bz2
rneovim-d33424983312806fb683eaa6bd720fe418c1299e.zip
Merge pull request #19098 from zeertzjq/vim-8.1.0822
vim-patch:8.1.{partial:0822,1189,1192},8.2.5109: 'showmode' fixes
Diffstat (limited to 'test/functional/vimscript/null_spec.lua')
-rw-r--r--test/functional/vimscript/null_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/vimscript/null_spec.lua b/test/functional/vimscript/null_spec.lua
index f23f00bcc5..2451da983e 100644
--- a/test/functional/vimscript/null_spec.lua
+++ b/test/functional/vimscript/null_spec.lua
@@ -135,7 +135,7 @@ describe('NULL', function()
null_test('does not make Neovim crash when v:oldfiles gets assigned to that', ':let v:oldfiles = L|oldfiles', 0)
null_expr_test('does not make complete() crash or error out',
'execute(":normal i\\<C-r>=complete(1, L)[-1]\\n")',
- '', '\n', function()
+ 0, '', function()
eq({''}, curbufmeths.get_lines(0, -1, false))
end)
null_expr_test('is accepted by setmatches()', 'setmatches(L)', 0, 0)