summaryrefslogtreecommitdiff
path: root/integration-tests/test-ebics.py
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/test-ebics.py')
-rwxr-xr-xintegration-tests/test-ebics.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py
index 551ab282..c1b02a83 100755
--- a/integration-tests/test-ebics.py
+++ b/integration-tests/test-ebics.py
@@ -50,7 +50,7 @@ def checkPorts(ports):
for i in ports:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
- s.bind(i)
+ s.bind(("0.0.0.0", i))
s.close()
except:
print("Port {} is not available".format(i))
@@ -253,4 +253,6 @@ resp = assertResponse(
)
assert(len(resp.json().get("payments")) == 1)
+nexus.terminate()
+sandbox.terminate()
print("Test passed!")