diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-11 20:53:49 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-11 20:53:49 +0200 |
commit | 769e9d21ac3e8dff43b9ef5e46cdc4523833b51e (patch) | |
tree | ba7bacd8603ba2da1d4a28e1c87813969804be8f /src/testdir/test_clientserver.vim | |
parent | d60e0a1d202d49503ba95a40c165172c8f61db7a (diff) | |
download | vim-git-769e9d21ac3e8dff43b9ef5e46cdc4523833b51e.tar.gz |
patch 8.0.1697: various tests are still a bit flakyv8.0.1697
Problem: Various tests are still a bit flaky.
Solution: Increase the default wait time to five seconds.
Diffstat (limited to 'src/testdir/test_clientserver.vim')
-rw-r--r-- | src/testdir/test_clientserver.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim index 6ef64285e..b807ecc9e 100644 --- a/src/testdir/test_clientserver.vim +++ b/src/testdir/test_clientserver.vim @@ -32,7 +32,7 @@ func Test_client_server() " Takes a short while for the server to be active. " When using valgrind it takes much longer. - call WaitFor('serverlist() =~ "' . name . '"', 5000) + call WaitFor('serverlist() =~ "' . name . '"') call assert_match(name, serverlist()) call remote_foreground(name) |