diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-05 12:53:39 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-05-05 19:43:13 +0800 |
commit | 49a2bb91170f49101fa67b0cf4cbfec5885edcf4 (patch) | |
tree | fe1f4d0f39b63445695183d2d304d3bed998fb9f /test | |
parent | 050b24cbccbe6e08f31fd33a854b91f7e8920834 (diff) | |
download | rneovim-49a2bb91170f49101fa67b0cf4cbfec5885edcf4.tar.gz rneovim-49a2bb91170f49101fa67b0cf4cbfec5885edcf4.tar.bz2 rneovim-49a2bb91170f49101fa67b0cf4cbfec5885edcf4.zip |
vim-patch:9.0.0846: using assert_fails() may cause hit-enter prompt
Problem: Using assert_fails() may cause hit-enter prompt.
Solution: Set no_wait_return. (closes vim/vim#11522)
https://github.com/vim/vim/commit/f220643c260d55d21a841a3c4032daadc41bc50b
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_assert.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/old/testdir/test_assert.vim b/test/old/testdir/test_assert.vim index 9b65e36e16..e20084515e 100644 --- a/test/old/testdir/test_assert.vim +++ b/test/old/testdir/test_assert.vim @@ -327,6 +327,12 @@ func Test_assert_fails_in_try_block() endtry endfunc +func Test_assert_fails_in_timer() + " should not cause a hit-enter prompt, which isn't actually checked here + call timer_start(0, {-> assert_fails('call', 'E471:')}) + sleep 10m +endfunc + func Test_assert_beeps() new call assert_equal(0, assert_beeps('normal h')) |