From 84bb35ebf4aa76addc360f6c0157152c949a9e72 Mon Sep 17 00:00:00 2001 From: Raghav Gulati Date: Wed, 8 May 2019 09:00:00 -0700 Subject: [PATCH] Bump wait from 10 -> 50ms This matches the waits in the rest of the package. --- floodsub_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/floodsub_test.go b/floodsub_test.go index eb353fa..8ba03d3 100644 --- a/floodsub_test.go +++ b/floodsub_test.go @@ -986,7 +986,7 @@ func TestImproperlySignedMessageRejected(t *testing.T) { if err != nil { t.Fatal(err) } - time.Sleep(time.Millisecond * 10) + time.Sleep(time.Millisecond * 50) // First the adversary sends the correct message. err = adversaryPubSub.Publish(topic, correctMessage)