diff --git a/tests/integration/cli_resource_pricing_negative_test.go b/tests/integration/cli_resource_pricing_negative_test.go index f054082f1..9c6c95aca 100644 --- a/tests/integration/cli_resource_pricing_negative_test.go +++ b/tests/integration/cli_resource_pricing_negative_test.go @@ -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) @@ -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) @@ -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)