summaryrefslogtreecommitdiff
path: root/integration-tests/test-ebics.py
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-06-19 00:10:52 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-06-19 00:10:52 +0530
commit3172664f1e0df86e576ade5f940886c7e01c2cd1 (patch)
treee5eb16e711279fa266ad78a123bd0bc82b16abd0 /integration-tests/test-ebics.py
parentf54bd1bc9f106d18ed5b562729f701bfd50eb372 (diff)
downloadlibeufin-3172664f1e0df86e576ade5f940886c7e01c2cd1.tar.gz
libeufin-3172664f1e0df86e576ade5f940886c7e01c2cd1.tar.bz2
libeufin-3172664f1e0df86e576ade5f940886c7e01c2cd1.zip
terminology
Diffstat (limited to 'integration-tests/test-ebics.py')
-rwxr-xr-xintegration-tests/test-ebics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py
index a74efe6c..9232bcaa 100755
--- a/integration-tests/test-ebics.py
+++ b/integration-tests/test-ebics.py
@@ -207,7 +207,7 @@ if len(resp.json().get("transactions")) != 0:
# 5.a, prepare a payment
resp = assertResponse(
post(
- "http://localhost:5001/bank-accounts/{}/prepared-payments".format(
+ "http://localhost:5001/bank-accounts/{}/payment-initiations".format(
BANK_ACCOUNT_LABEL
),
json=dict(
@@ -227,7 +227,7 @@ if PREPARED_PAYMENT_UUID == None:
# 5.b, submit prepared statement
assertResponse(
post(
- f"http://localhost:5001/bank-accounts/{BANK_ACCOUNT_LABEL}/prepared-payments/{PREPARED_PAYMENT_UUID}/submit",
+ f"http://localhost:5001/bank-accounts/{BANK_ACCOUNT_LABEL}/payment-initiations/{PREPARED_PAYMENT_UUID}/submit",
json=dict(),
headers=dict(Authorization=USER_AUTHORIZATION_HEADER),
)