From 5542bde10e18fb770decffa21654827ecd0d0d2b Mon Sep 17 00:00:00 2001 From: im-adithya Date: Wed, 3 Apr 2024 21:07:18 +0530 Subject: [PATCH] chore: remove dbUri :P --- integration_tests/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/util.go b/integration_tests/util.go index 04178cfc..f20607c2 100644 --- a/integration_tests/util.go +++ b/integration_tests/util.go @@ -49,7 +49,7 @@ const ( func LndHubTestServiceInit(lndClientMock lnd.LightningClientWrapper) (svc *service.LndhubService, err error) { dbUri, ok := os.LookupEnv("DATABASE_URI") if !ok { - dbUri = "postgresql://im-adithya:password@localhost:5432/lndhub?sslmode=disable" + dbUri = "postgresql://user:password@localhost/lndhub?sslmode=disable" } dc := &service.Config{} fmt.Println("dc.MaxSendAmount")