aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-18 14:23:09 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-04-18 14:29:07 +0800
commit187ba3efce4acc197ce6cc9559a905eec97bacbe (patch)
tree510aeef3ca3898c5597f40bc89e6d7246c29bb9b /test
parent5b77dde8dd281b1db1f503d9b270c3697f88bd65 (diff)
downloadrneovim-187ba3efce4acc197ce6cc9559a905eec97bacbe.tar.gz
rneovim-187ba3efce4acc197ce6cc9559a905eec97bacbe.tar.bz2
rneovim-187ba3efce4acc197ce6cc9559a905eec97bacbe.zip
vim-patch:9.0.0815
https://github.com/vim/vim/commit/9c50eeb40117413bf59a9da904c8d0921ed0a6e6 Co-authored-by: Martin Tournoij <martin@arp242.net>
Diffstat (limited to 'test')
-rw-r--r--test/old/testdir/test_shell.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_shell.vim b/test/old/testdir/test_shell.vim
index b65752dbf2..828fd1fa40 100644
--- a/test/old/testdir/test_shell.vim
+++ b/test/old/testdir/test_shell.vim
@@ -223,8 +223,8 @@ func Test_shell_repeat()
call assert_equal(['Cmd: [-c echo coconut]'], readfile('Xlog'))
call writefile(['empty'], 'Xlog')
- call feedkeys(":!\<CR>", 'xt') " :! is a no-op
- call assert_equal(['empty'], readfile('Xlog'))
+ call feedkeys(":!\<CR>", 'xt') " :!
+ call assert_equal(['Cmd: [-c ]'], readfile('Xlog'))
call feedkeys(":!!\<CR>", 'xt') " :! doesn't clear previous command
call assert_equal(['Cmd: [-c echo coconut]'], readfile('Xlog'))