From 06fb8ea11f119d4ecc3859387f69dee7664533f1 Mon Sep 17 00:00:00 2001 From: Tyler <48813565+technicallyty@users.noreply.github.com> Date: Mon, 12 May 2025 07:27:31 -0700 Subject: [PATCH] chore: uncomment todo in upgrade systemtest (#24724) Co-authored-by: Alex | Interchain Labs --- tests/systemtests/upgrade_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/systemtests/upgrade_test.go b/tests/systemtests/upgrade_test.go index f651a928ce..bb2a98e4fd 100644 --- a/tests/systemtests/upgrade_test.go +++ b/tests/systemtests/upgrade_test.go @@ -124,10 +124,9 @@ func TestChainUpgrade(t *testing.T) { systest.Sut.StartChain(t) require.Equal(t, upgradeHeight+1, systest.Sut.CurrentHeight()) - // cli = systest.NewCLIWrapper(t, systest.Sut, systest.Verbose) // smoke test that new version runs - // TODO: add once protocol pool is enabled - // got := cli.Run("tx", "protocolpool", "fund-community-pool", "100stake", "--from=node0") - // systest.RequireTxSuccess(t, got) + cli = systest.NewCLIWrapper(t, systest.Sut, systest.Verbose) + got := cli.Run("tx", "protocolpool", "fund-community-pool", "100stake", "--from=node0") + systest.RequireTxSuccess(t, got) }