aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-01-02 18:47:48 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-01-02 18:48:31 -0500
commit30e8c1779f3b07e7d1cb76e0b880c8fb71e3cebf (patch)
tree92c9956ebbb1ec071c4e0051c84ef9d8565819b0
parentd216314e5bc223bad49b1ae49011194f8edf60f2 (diff)
downloadrneovim-30e8c1779f3b07e7d1cb76e0b880c8fb71e3cebf.tar.gz
rneovim-30e8c1779f3b07e7d1cb76e0b880c8fb71e3cebf.tar.bz2
rneovim-30e8c1779f3b07e7d1cb76e0b880c8fb71e3cebf.zip
vim-patch:8.2.0461: confirm test fails on amd64 system
Problem: Confirm test fails on amd64 system. (Alimar Riesebieter) Solution: Add an extra WaitForAssert(). (Dominique Pelle) https://github.com/vim/vim/commit/9207d1f523c2e2fb1c8749ec6f84ab5ecc2c62f4
-rw-r--r--src/nvim/testdir/test_excmd.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_excmd.vim b/src/nvim/testdir/test_excmd.vim
index 62c35c9f53..1b4859ad6d 100644
--- a/src/nvim/testdir/test_excmd.vim
+++ b/src/nvim/testdir/test_excmd.vim
@@ -116,5 +116,7 @@ func Test_confirm_cmd_cancel()
call WaitForAssert({-> assert_match('^\[Y\]es, (N)o, (C)ancel: *$',
\ term_getline(buf, 20))}, 1000)
call term_sendkeys(buf, "N")
+ call WaitForAssert({-> assert_match('^ *0,0-1 All$',
+ \ term_getline(buf, 20))}, 1000)
call StopVimInTerminal(buf)
endfunc