Skip to content

Commit

Permalink
fix: set type of expected height to match equal value
Browse files Browse the repository at this point in the history
  • Loading branch information
RafilxTenfen committed Jul 26, 2024
1 parent a3a3d6e commit 9d9ab68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/software_upgrade_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 9d9ab68

Please sign in to comment.