From 26d2ba05fc1ffea70463993e9dfd5562a39765d7 Mon Sep 17 00:00:00 2001 From: inphi Date: Thu, 20 Apr 2023 17:47:57 -0400 Subject: [PATCH] bump test timeout --- op-program/preimage/hints_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-program/preimage/hints_test.go b/op-program/preimage/hints_test.go index 88afacf13bda..42eaf6877a03 100644 --- a/op-program/preimage/hints_test.go +++ b/op-program/preimage/hints_test.go @@ -56,7 +56,7 @@ func TestHints(t *testing.T) { close(done) }() select { - case <-time.After(time.Second * 20): + case <-time.After(time.Second * 30): t.Error("reader/writer stuck") case <-done: }