neovim

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

commit 08ae0c840b31b1ef9ed56c0f9d2f96585b474538
parent a4e4e493df5f6897345278a460cccd175f7f4cf0
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sat,  6 Apr 2024 08:33:07 +0800

test(old): sleep for 1 second on non-Windows in test_stat.vim (#28195)

Now that Nvim always supports nanotime, sleeping for some milliseconds
is actually enough, but for test_stat.vim keeping some longer sleeps may
increase test coverage, so just match the upstream test.
Diffstat:
Mtest/old/testdir/test_stat.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/old/testdir/test_stat.vim b/test/old/testdir/test_stat.vim @@ -55,7 +55,7 @@ func SleepForTimestamp() if has('win32') sleep 2 else - sleep 2 + sleep 1 endif endfunc