From 4c34e5db0c4ecf48e456a580878c11b33e593542 Mon Sep 17 00:00:00 2001 From: Pavel Zbitskiy Date: Wed, 6 Aug 2025 14:56:28 -0400 Subject: [PATCH] tests: fix wait timeout in TestApplicationsUpgradeOverREST --- test/e2e-go/upgrades/application_support_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e-go/upgrades/application_support_test.go b/test/e2e-go/upgrades/application_support_test.go index e8c1e391d6..4e8f04b8cf 100644 --- a/test/e2e-go/upgrades/application_support_test.go +++ b/test/e2e-go/upgrades/application_support_test.go @@ -242,10 +242,10 @@ int 1 a.NoError(err) round, err = client.CurrentRound() a.NoError(err) - _, err = client.BroadcastTransaction(signedTxn) + txid, err := client.BroadcastTransaction(signedTxn) a.NoError(err) - client.WaitForRound(round + 2) + client.WaitForConfirmedTxn(round+10, txid) // check creator's balance record for the app entry and the state changes ad, err = client.AccountData(creator)