libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit c473f2f5934ed395f939764103736b26456df293
parent 83c7d6e3834cbec410e7596a58d7104184c5814e
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sun, 21 Jun 2020 17:43:33 +0530

make test case pass again by specifying correct parameters

Diffstat:
Mintegration-tests/test-ebics.py | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 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), ) )