Skip to content

Commit

Permalink
Re-order against sequence mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Eengineer1 committed Feb 27, 2024
1 parent b12769d commit 4cde2f5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/upgrade/integration/v2/param_change_proposal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ var _ = Describe("Upgrade - Fee parameter change proposal", func() {
Expect(res.Code).To(BeEquivalentTo(0))
})

It("should vote for the parameter change proposal from `validator0` container", func() {
By("sending a VoteProposal transaction from `validator0` container")
res, err := cli.VoteProposal(cli.Validator0, "2", "yes")
Expect(err).To(BeNil())
Expect(res.Code).To(BeEquivalentTo(0))
})

It("should vote for the parameter change proposal from `validator1` container", func() {
By("sending a VoteProposal transaction from `validator1` container")
res, err := cli.VoteProposal(cli.Validator1, "2", "yes")
Expand All @@ -59,6 +52,13 @@ var _ = Describe("Upgrade - Fee parameter change proposal", func() {
Expect(res.Code).To(BeEquivalentTo(0))
})

It("should vote for the parameter change proposal from `validator0` container", func() {
By("sending a VoteProposal transaction from `validator0` container")
res, err := cli.VoteProposal(cli.Validator0, "2", "yes")
Expect(err).To(BeNil())
Expect(res.Code).To(BeEquivalentTo(0))
})

It("should wait for the proposal to pass", func() {
By("getting the current block height")
currentHeight, err := cli.GetCurrentBlockHeight(cli.Validator0, cli.CliBinaryName)
Expand Down

0 comments on commit 4cde2f5

Please sign in to comment.