Skip to content

Commit 7370d5a

Browse files
committed
classic mistake of forgetting CI is slow, increate testing expecation
timeout
1 parent 69cc9c8 commit 7370d5a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/pdp/testing/harness.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func (h *Harness) WaitFor_MessageWaitsEth_TxSuccess(signedTx common.Hash) {
9494

9595
return record.TxSuccess != nil && *record.TxSuccess
9696
},
97-
3*time.Second,
97+
time.Minute,
9898
50*time.Millisecond)
9999
}
100100

@@ -106,7 +106,7 @@ func (h *Harness) WaitFor_PDPProofsetCreate_OK(signedTx common.Hash) {
106106

107107
return record.Ok != nil && *record.Ok
108108
},
109-
3*time.Second,
109+
time.Minute,
110110
50*time.Millisecond,
111111
)
112112
}
@@ -119,7 +119,7 @@ func (h *Harness) WaitFor_PDPProofsetCreate_ProofsetCreated(signedTx common.Hash
119119

120120
return record.Ok != nil && *record.Ok && record.ProofsetCreated
121121
},
122-
3*time.Second,
122+
time.Minute,
123123
50*time.Millisecond,
124124
)
125125

0 commit comments

Comments
 (0)