From 81a9b63dbcc0d6cc27cb23f7e1450b6ba38fee81 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 13 Dec 2016 17:33:52 +0100 Subject: [PATCH] Trust user for host binding of link adress --- tests/controller/test_compute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/controller/test_compute.py b/tests/controller/test_compute.py index c0f4c134..4516a07c 100644 --- a/tests/controller/test_compute.py +++ b/tests/controller/test_compute.py @@ -429,7 +429,7 @@ def test_get_ip_on_same_subnet(controller, async_run): assert async_run(compute1.get_ip_on_same_subnet(compute2)) == ("192.168.1.1", "192.168.1.2") # Case 2 compute2 host is on a different network but a common interface is available - compute2 = Compute("compute2", host="192.168.4.2", controller=controller) + compute2 = Compute("compute2", host="127.0.0.1", controller=controller) compute2._interfaces_cache = [ { "ip_address": "127.0.0.1",