commit 38e9401851fe252502498ac66e7e376ef9641530
parent b0f64929250b4b63bf984fd45bf4dbd06140fa54
Author: MS <ms@taler.net>
Date: Mon, 14 Dec 2020 08:48:14 +0100
provide defaults
Diffstat:
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/integration-tests/util.py b/integration-tests/util.py
@@ -27,12 +27,19 @@ class EbicsDetails:
self.version = "H004"
class BankingDetails:
- def __init__(self, base_url):
- self.iban = "GB33BUKB20201555555555"
- self.bic = "BUKBGB22"
- self.label = "savings"
+ def __init__(
+ self,
+ base_url,
+ iban="GB33BUKB20201555555555",
+ bic="BUKBGB22",
+ label="savings",
+ name="Oliver Smith"
+ ):
+ self.iban = iban
+ self.bic = bic
+ self.label = label
self.bank_base_url = sandbox_base
- self.name = "Oliver Smith"
+ self.name = name
class NexusDetails:
def __init__(self, base_url):