From 31836755d785e17cf5648afd705ae32c18281169 Mon Sep 17 00:00:00 2001 From: Nikolay Markov Date: Thu, 20 Sep 2012 13:52:32 +0400 Subject: [PATCH] test ip fix --- test/integration/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/base.py b/test/integration/base.py index ce4ab83e4..b8a0e723a 100644 --- a/test/integration/base.py +++ b/test/integration/base.py @@ -9,7 +9,7 @@ class Base(TestCase): if ci is not None and ci.environment is not None: return str(ci.environment.node['admin'].ip_address) else: - return "10.0.14.2" + return "10.0.0.2" def get_id_by_mac(self, mac_address): return mac_address.replace(":", "").upper()