From 6c3682d22c3b1758b8fca440012dfe2a4b349f5c Mon Sep 17 00:00:00 2001 From: Thomas Duval Date: Thu, 8 Sep 2016 11:12:31 +0200 Subject: Force the port of ODL to 8181. Change-Id: I3dbaaafe996ae68a4de9e0e360da5c32e7429f76 --- tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/run_tests.py b/tests/run_tests.py index 816e28f5..9b0c1279 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -74,7 +74,7 @@ def test_federation(): # Retrieve ODL token nhost, nport = __get_endpoint_url(name="neutron") auth_data = {'username': 'admin', 'password': 'console'} - conn = client.HTTPConnection(nhost, nport) + conn = client.HTTPConnection(nhost, "8181") headers = {"Content-type": "application/json"} conn.request("POST", "/auth/v1/domains", json.dumps(auth_data).encode('utf-8'), headers=headers) resp = conn.getresponse() -- cgit 1.2.3-korg