From 13fcf0218250ce298a46dc208ccc0a21cca6581a Mon Sep 17 00:00:00 2001 From: kiwiidb Date: Wed, 15 Jun 2022 18:44:24 +0200 Subject: [PATCH] too many / --- integration_tests/outgoing_payment_test.go | 2 +- integration_tests/websocket_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_tests/outgoing_payment_test.go b/integration_tests/outgoing_payment_test.go index affea15..61afe51 100644 --- a/integration_tests/outgoing_payment_test.go +++ b/integration_tests/outgoing_payment_test.go @@ -190,7 +190,7 @@ func (suite *PaymentTestSuite) TestZeroAmountInvoice() { } invoice, err := suite.externalLND.AddInvoice(context.Background(), &externalInvoice) assert.NoError(suite.T(), err) - ////pay external from alice + //pay external from alice payResponse := suite.createPayInvoiceReq(&ExpectedPayInvoiceRequestBody{ Invoice: invoice.PaymentRequest, Amount: amtToPay, diff --git a/integration_tests/websocket_test.go b/integration_tests/websocket_test.go index dd5989f..cc93066 100644 --- a/integration_tests/websocket_test.go +++ b/integration_tests/websocket_test.go @@ -204,7 +204,7 @@ func (suite *WebSocketTestSuite) TestWebSocketMissingInvoice() { err := suite.mlnd.mockPaidInvoice(invoice1, 0, false, nil) assert.NoError(suite.T(), err) - //// create 2nd invoice and pay it as well + //create 2nd invoice and pay it as well invoice2 := suite.createAddInvoiceReq(1000, "integration test websocket missing invoices 2nd", suite.userToken) err = suite.mlnd.mockPaidInvoice(invoice2, 0, false, nil) assert.NoError(suite.T(), err)