libeufin

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

commit 443c3594192e97279c4d49807816f4f888ed53de
parent 931203bd1e80b74d5a8a13469df2524a1d1115d8
Author: MS <ms@taler.net>
Date:   Mon, 25 May 2020 13:47:57 +0200

remove 'nexus' occurrences

Diffstat:
Mintegration-tests/test-sandbox.py | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/integration-tests/test-sandbox.py b/integration-tests/test-sandbox.py @@ -24,7 +24,6 @@ BANK_ACCOUNT_LABEL = "savings" def fail(msg): print(msg) - nexus.terminate() sandbox.terminate() exit(1) @@ -45,7 +44,7 @@ def assertResponse(response): print("Test failed on URL: {}".format(response.url)) # stdout/stderr from both services is A LOT of text. # Confusing to dump all that to console. - print("Check nexus.log and sandbox.log, probably under /tmp") + print("Check sandbox.log, probably under /tmp") sandbox.terminate() exit(1) # Allows for finer grained checks. @@ -65,9 +64,7 @@ for i in range(10): get("http://localhost:5000/") except: if i == 9: - nexus.terminate() sandbox.terminate() - stdout, stderr = nexus.communicate() print("Sandbox timed out") print("{}\n{}".format(stdout.decode(), stderr.decode())) exit(77)