Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atheeshp committed Feb 22, 2024
1 parent 9680615 commit a8e56e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/cli_resource_pricing_negative_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ var _ = Describe("cheqd cli - negative resource pricing", func() {

By("querying the fee payer account balance after the transaction")
balanceAfter, err := cli.QueryBalance(testdata.BASE_ACCOUNT_4_ADDR, resourcetypes.BaseMinimalDenom)
Expect(err).ToNot(BeNil())
Expect(err).To(BeNil())

By("checking that the fee payer account balance has been decreased by the tax")
diff := balanceBefore.Amount.Sub(balanceAfter.Amount)
Expand Down Expand Up @@ -350,7 +350,7 @@ var _ = Describe("cheqd cli - negative resource pricing", func() {

By("querying the fee payer account balance after the transaction")
balanceAfter, err := cli.QueryBalance(testdata.BASE_ACCOUNT_4_ADDR, resourcetypes.BaseMinimalDenom)
Expect(err).ToNot(BeNil())
Expect(err).To(BeNil())

By("checking that the fee payer account balance has been decreased by the tax")
diff := balanceBefore.Amount.Sub(balanceAfter.Amount)
Expand Down Expand Up @@ -384,7 +384,7 @@ var _ = Describe("cheqd cli - negative resource pricing", func() {

By("querying the fee payer account balance after the transaction")
balanceAfter, err := cli.QueryBalance(testdata.BASE_ACCOUNT_4_ADDR, resourcetypes.BaseMinimalDenom)
Expect(err).ToNot(BeNil())
Expect(err).To(BeNil())

By("checking that the fee payer account balance has been decreased by the tax")
diff := balanceBefore.Amount.Sub(balanceAfter.Amount)
Expand Down

0 comments on commit a8e56e0

Please sign in to comment.