From 7591f1c5a9625aaced402f3e5160217c6633a665 Mon Sep 17 00:00:00 2001 From: Pepper Lebeck-Jobe Date: Sun, 8 Sep 2024 02:11:49 +0200 Subject: [PATCH] Temporarily increase the time for bridging balances This change allows the test to pass even on a heavily-loaded mac. Related to: NIT-2768 --- system_tests/common_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_tests/common_test.go b/system_tests/common_test.go index 457dae0910..caf749788c 100644 --- a/system_tests/common_test.go +++ b/system_tests/common_test.go @@ -618,7 +618,7 @@ func BridgeBalance( break } TransferBalance(t, "Faucet", "User", big.NewInt(1), l1info, l1client, ctx) - if i > 20 { + if i > 200 { Fatal(t, "bridging failed") } <-time.After(time.Millisecond * 100)