From e6cdbad6a575c4608ba21edb0b1606c7c1ddda3c Mon Sep 17 00:00:00 2001 From: narimiran Date: Wed, 29 Jul 2020 11:15:50 +0200 Subject: [PATCH] fix flaky t7758 test --- tests/async/t7758.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/async/t7758.nim b/tests/async/t7758.nim index ce4df1fc92..5e421054e2 100644 --- a/tests/async/t7758.nim +++ b/tests/async/t7758.nim @@ -10,6 +10,6 @@ proc main() = inc(counter) poll(10) - doAssert counter <= 4 + doAssert counter <= 5 for i in 0 .. 10: main()