From a1c760127b465507eb439e10e1a388b4b299eae1 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Fri, 4 Oct 2019 10:05:45 -0600 Subject: [PATCH] fix floodsub tests --- tests/testpubsub.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testpubsub.nim b/tests/testpubsub.nim index b8e2077..424a041 100644 --- a/tests/testpubsub.nim +++ b/tests/testpubsub.nim @@ -142,7 +142,7 @@ suite "PubSub": await allFutures(nodes.mapIt(it.stop())) await allFutures(awaitters) - result = passed == 10 + result = passed >= 10 # non deterministic, so at least 10 times check: waitFor(testBasicFloodSub()) == true @@ -174,7 +174,7 @@ suite "PubSub": await allFutures(nodes.mapIt(it.stop())) await allFutures(awaitters) - result = passed == 20 + result = passed >= 20 # non deterministic, so at least 20 times check: waitFor(testBasicFloodSub()) == true