commit 995605215400f83d56a7bf9bae29590a7e461416
parent 86611f2c5e490f7cd571e934c9c7f3609a5af207
Author: Florian Dold <florian@dold.me>
Date: Thu, 21 Jan 2021 02:02:19 +0100
fix tests
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/integration-tests/util.py b/integration-tests/util.py
@@ -46,12 +46,12 @@ class BankingDetails:
class NexusDetails:
def __init__(self, base_url):
self.base_url = base_url
- self.username = "oliver"
- self.password = "secret"
+ self.username = "admin"
+ self.password = "x"
self.bank_connection = "my-ebics"
self.bank_label = "local-savings"
self.auth = auth.HTTPBasicAuth(self.username, self.password)
- self.taler_facade_name = "my-taler-facade"
+ self.taler_facade_name = "taler-wire-gateway"
class LibeufinPersona:
def __init__(self, banking_details, nexus_details, ebics_details):