From ffb2d78bbd312f9918ea5b493758cd188fa8221e Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 1 Mar 2021 15:08:49 +0300 Subject: [PATCH] core: update Notary test Let's allow to wait a bit more. Hardware resources of the Github workflow tests aren't so fluent. --- pkg/core/notary_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/core/notary_test.go b/pkg/core/notary_test.go index 42efcdcdf..2f18333b6 100644 --- a/pkg/core/notary_test.go +++ b/pkg/core/notary_test.go @@ -661,6 +661,6 @@ func TestNotary(t *testing.T) { mtx.RLock() defer mtx.RUnlock() return completedTxes[requests[0].MainTransaction.Hash()] != nil - }, time.Second, time.Millisecond) + }, 2*time.Second, 10*time.Millisecond) checkFallbackTxs(t, requests, false) }