From 0b094e72cfba712ba69c1ec58bf52995fdd85fe6 Mon Sep 17 00:00:00 2001 From: Adithya Vardhan Date: Wed, 22 Feb 2023 19:18:05 +0530 Subject: [PATCH] fix: integration tests --- integration_tests/keysend_test.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/integration_tests/keysend_test.go b/integration_tests/keysend_test.go index 8236aef..f9770c9 100644 --- a/integration_tests/keysend_test.go +++ b/integration_tests/keysend_test.go @@ -88,8 +88,7 @@ func (suite *KeySendTestSuite) TestKeysendPayment() { //wait a bit for the callback event to hit time.Sleep(10 * time.Millisecond) - suite.createKeySendReq(int64(externalSatRequested), "key send test", "03abcdef123456789a", suite.aliceToken) - + suite.createKeySendReq(int64(externalSatRequested), "key send test", "123456789012345678901234567890123456789012345678901234567890abcdef", suite.aliceToken) // check that balance was reduced userId := getUserIdFromToken(suite.aliceToken) aliceBalance, err := suite.service.CurrentUserBalance(context.Background(), userId) @@ -128,15 +127,15 @@ func (suite *KeySendTestSuite) TestMultiKeysend() { Keysends: []v2controllers.KeySendRequestBody{ { Amount: 150, - Destination: "03abcdef123456789a", + Destination: "123456789012345678901234567890123456789012345678901234567890abcdef", }, { Amount: 100, - Destination: "03abcdef123456789a", + Destination: "123456789012345678901234567890123456789012345678901234567890abcdef", }, { Amount: 50, - Destination: "03abcdef123456789a", + Destination: "123456789012345678901234567890123456789012345678901234567890abcdef", }, }, }))