From 8e2e64ac78930eeb0eb65c061c1db7a8eb759cb4 Mon Sep 17 00:00:00 2001 From: Kaloyan Tanev <24719519+KaloyanTanev@users.noreply.github.com> Date: Wed, 8 May 2024 15:59:32 +0200 Subject: [PATCH] cmd: increase timeout of timeout test (#3079) Sometimes timeout is so little that the test doesn't even reach the second instance, as observed in the pipeline [here](https://github.com/ObolNetwork/charon/actions/runs/9002400755/job/24730617672?pr=3078). category: bug ticket: none --- cmd/testbeacon_internal_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/testbeacon_internal_test.go b/cmd/testbeacon_internal_test.go index 17af27096..2b5a962b1 100644 --- a/cmd/testbeacon_internal_test.go +++ b/cmd/testbeacon_internal_test.go @@ -96,7 +96,7 @@ func TestBeaconTest(t *testing.T) { OutputToml: "", Quiet: false, TestCases: nil, - Timeout: time.Nanosecond, + Timeout: 100 * time.Nanosecond, }, Endpoints: []string{endpoint1, endpoint2}, },