Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vishal-kanna committed Sep 26, 2024
1 parent 58fdd4e commit e987f8a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions tests/integration/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ func CreateResource(tmpDir string, payload resourcetypes.MsgCreateResourcePayloa
func BurnMsg(from string, coins string, feeParams []string) (sdk.TxResponse, error) {
return Tx("cheqd", "burn", from, feeParams, coins)
}

func SubmitProposal(container string, from string, feeParams []string, pathToDir ...string) (sdk.TxResponse, error) {
return Tx("gov", "submit-proposal", from, feeParams, pathToDir...)
}
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/integration_suite_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build integration

package integration

import (
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/mint_proposal_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build integration

package integration

import (
Expand Down Expand Up @@ -44,7 +46,6 @@ var _ = Describe("Upgrade - Fee parameter change proposal", func() {
Expect(err).To(BeNil())
fmt.Println("res>>>>>>>>>>>>", res)
Expect(res.Code).To(BeEquivalentTo(0))

})

It("should vote for the parameter change proposal from `validator2` container", func() {
Expand Down Expand Up @@ -81,5 +82,4 @@ var _ = Describe("Upgrade - Fee parameter change proposal", func() {
})

// It("should check the proposal status to ensure it has passed", func() {

})

0 comments on commit e987f8a

Please sign in to comment.