aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-14 18:19:56 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-15 01:27:30 -0400
commit0bdd4e8393636ad7c7d013df4c361264b1c048f1 (patch)
tree836695f4259951e6a15e29edd87bb965ad85de32 /src
parent8e2a892e709df140d321b8058be041c0fe111ebc (diff)
downloadrneovim-0bdd4e8393636ad7c7d013df4c361264b1c048f1.tar.gz
rneovim-0bdd4e8393636ad7c7d013df4c361264b1c048f1.tar.bz2
rneovim-0bdd4e8393636ad7c7d013df4c361264b1c048f1.zip
oldtests: finish port of 8.0.1224
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_autocmd.vim5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim
index 10fea4dad3..e0f55b79c1 100644
--- a/src/nvim/testdir/test_autocmd.vim
+++ b/src/nvim/testdir/test_autocmd.vim
@@ -253,16 +253,15 @@ func Test_BufReadCmdHelp()
au BufReadCmd * e +h
help
- helpclose
au! BufReadCmd
endfunc
func Test_BufReadCmdHelpJump()
" This used to cause access to free memory
au BufReadCmd * e +h{
- help
+ " } to fix highlighting
+ call assert_fails('help', 'E434:')
- helpclose
au! BufReadCmd
endfunc