From 8831541cdca4bd5c1d69df5899285ea58d187b3a Mon Sep 17 00:00:00 2001 From: kiwiidb Date: Thu, 6 Jul 2023 16:22:28 +0200 Subject: [PATCH] fix comment --- integration_tests/hodl_invoice_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/hodl_invoice_test.go b/integration_tests/hodl_invoice_test.go index 8525634..235f290 100644 --- a/integration_tests/hodl_invoice_test.go +++ b/integration_tests/hodl_invoice_test.go @@ -310,7 +310,7 @@ func (suite *HodlInvoiceSuite) TestNegativeBalanceWithHodl() { //fetch user balance again userBalance, err := suite.service.CurrentUserBalance(context.Background(), userId) assert.NoError(suite.T(), err) - //assert the balance is negative + //assert the balance did not go below 0 assert.False(suite.T(), userBalance < 0) }