summaryrefslogtreecommitdiff
path: root/integration-tests/test-ebics.py
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-06-21 17:43:33 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-06-21 17:43:33 +0530
commitc473f2f5934ed395f939764103736b26456df293 (patch)
tree7c2585d0cfe3fcb2b71811d09236c7addf7fe5b2 /integration-tests/test-ebics.py
parent83c7d6e3834cbec410e7596a58d7104184c5814e (diff)
downloadlibeufin-c473f2f5934ed395f939764103736b26456df293.tar.gz
libeufin-c473f2f5934ed395f939764103736b26456df293.tar.bz2
libeufin-c473f2f5934ed395f939764103736b26456df293.zip
make test case pass again by specifying correct parameters
Diffstat (limited to 'integration-tests/test-ebics.py')
-rwxr-xr-xintegration-tests/test-ebics.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py
index 9232bcaa..5b5c2563 100755
--- a/integration-tests/test-ebics.py
+++ b/integration-tests/test-ebics.py
@@ -171,7 +171,6 @@ assertResponse(
assertResponse(
post(
"http://localhost:5001/bank-connections/my-ebics/ebics/download/tsd",
- json=dict(),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
)
@@ -189,7 +188,7 @@ assertResponse(
assertResponse(
post(
f"http://localhost:5001/bank-accounts/{BANK_ACCOUNT_LABEL}/fetch-transactions",
- json=dict(),
+ json=dict(level="all", rangeType="all"),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
)
@@ -237,7 +236,7 @@ assertResponse(
assertResponse(
post(
f"http://localhost:5001/bank-accounts/{BANK_ACCOUNT_LABEL}/fetch-transactions",
- json=dict(),
+ json=dict(level="all", rangeType="all"),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)
)