diff options
author | Miran <narimiran@disroot.org> | 2019-11-26 14:12:15 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-11-26 14:12:15 +0100 |
commit | 879801c63980287070f64d94e4c4f7aeb28cb2f4 (patch) | |
tree | 4487fbec46b0937a6ada7226f0ea0ae0e2b6edb8 /tests | |
parent | dfe5d115fbc644413fa8747d68c9cf63848e3dee (diff) | |
download | Nim-879801c63980287070f64d94e4c4f7aeb28cb2f4.tar.gz |
increase the timeout for 'tasyncclosestall' (#12744)
This test is very flaky, this change might help reducing the number of failings (usually solved by restarting the test suite). Refs https://github.com/nim-lang/Nim/pull/12694#issuecomment-557583790
Diffstat (limited to 'tests')
-rw-r--r-- | tests/async/tasyncclosestall.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tasyncclosestall.nim b/tests/async/tasyncclosestall.nim index bf3035819..ce6ba77cb 100644 --- a/tests/async/tasyncclosestall.nim +++ b/tests/async/tasyncclosestall.nim @@ -14,7 +14,7 @@ else: # even when the socket is closed. const port = Port(50726) - timeout = 5000 + timeout = 8000 var sent = 0 |