From 9d9ab6873e42acf36ef5f36215e8ba3d90ea6977 Mon Sep 17 00:00:00 2001 From: RafilxTenfen Date: Thu, 25 Jul 2024 21:57:50 -0300 Subject: [PATCH] fix: set type of expected height to match equal value --- test/e2e/software_upgrade_e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/software_upgrade_e2e_test.go b/test/e2e/software_upgrade_e2e_test.go index e8ede1e4..c5fa87c8 100644 --- a/test/e2e/software_upgrade_e2e_test.go +++ b/test/e2e/software_upgrade_e2e_test.go @@ -41,7 +41,7 @@ func (s *SoftwareUpgradeVanillaTestSuite) TestUpgradeVanilla() { // makes sure that the upgrade was acutally executed resp := n.QueryAppliedPlan("vanilla") - s.Equal(25, resp.Height, "the plan should be applied at the height 25") + s.EqualValues(int64(25), resp.Height, "the plan should be applied at the height 25") fps := n.QueryFinalityProviders() s.Len(fps, 1, "it should have one finality provider, since the vanilla upgrade just added a new one")