neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 1643c49514cef2ab6fafea1959d66503b0fb045e
parent 86b737649bb8c51649a21033c0e365f53f2bc04a
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Wed, 13 Nov 2024 07:28:40 +0800

vim-patch:9.1.0860: tests: mouse_shape tests use hard code sleep value (#31184)

Problem:  tests: mouse_shape tests use hard code sleep value
          (Bram Moolenaar)
Solution: Use WaitForAssert() instead (Yee Cheng Chin)

related: vim/vim#12157
closes: vim/vim#16042

https://github.com/vim/vim/commit/24078e39cd10b8a65af5297ebe12ddf1e550167a

Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
Diffstat:
Mtest/old/testdir/test_normal.vim | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/test/old/testdir/test_normal.vim b/test/old/testdir/test_normal.vim @@ -3958,8 +3958,7 @@ func Test_mouse_shape_after_failed_change() END call writefile(lines, 'Xmouseshape.vim', 'D') call RunVim([], [], "-g -S Xmouseshape.vim") - sleep 300m - call assert_equal(['busy', 'arrow'], readfile('Xmouseshapes')) + call WaitForAssert({-> assert_equal(['busy', 'arrow'], readfile('Xmouseshapes'))}, 300) call delete('Xmouseshapes') endfunc @@ -3990,8 +3989,7 @@ func Test_mouse_shape_after_cancelling_gr() END call writefile(lines, 'Xmouseshape.vim', 'D') call RunVim([], [], "-g -S Xmouseshape.vim") - sleep 300m - call assert_equal(['beam', 'arrow'], readfile('Xmouseshapes')) + call WaitForAssert({-> assert_equal(['beam', 'arrow'], readfile('Xmouseshapes'))}, 300) call delete('Xmouseshapes') endfunc