From d974bc4e9a6ae4a8356ea18e9e190ba22f4f7299 Mon Sep 17 00:00:00 2001 From: Diego Date: Thu, 29 Jun 2023 16:48:13 +0200 Subject: [PATCH] Fix test --- tests/pubsub/testgossipsub.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pubsub/testgossipsub.nim b/tests/pubsub/testgossipsub.nim index c1717b791..799308643 100644 --- a/tests/pubsub/testgossipsub.nim +++ b/tests/pubsub/testgossipsub.nim @@ -667,7 +667,7 @@ suite "GossipSub": check (await nodes[0].publish("foobar", newSeq[byte](2_500_000))) == gossip1.parameters.dLow - check (await nodes[0].publish("foobar", newSeq[byte](500_000))) == 17 + check (await nodes[0].publish("foobar", newSeq[byte](500_001))) == 17 # Now try with a mesh gossip1.subscribe("foobar", handler)