commit 31848283c03c1ad2bc0fdb0c473eb739ca688193
parent d9e44a79da332e58d33f29544d6dd4a8762d4c58
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Fri, 8 Nov 2019 13:00:15 +0100
no need to assert in python CLI
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/sandbox/src/main/python/libeufin-cli b/sandbox/src/main/python/libeufin-cli
@@ -37,7 +37,6 @@ def ini(obj, customer_id):
print("Could not reach the bank")
return
- assert(resp.status_code == 200)
print(resp.content.decode("utf-8"))
@@ -57,7 +56,6 @@ def hia(obj, customer_id):
print("Could not reach the bank")
return
- assert(resp.status_code == 200)
print(resp.content.decode("utf-8"))
@ebics.command(help="send HPB message")
@@ -76,7 +74,6 @@ def sync(obj, customer_id):
print("Could not reach the bank")
return
- assert(resp.status_code == 200)
print(resp.content.decode("utf-8"))
cli()