aboutsummaryrefslogtreecommitdiffstats
path: root/functest/utils/functest_utils.py
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2017-02-14 11:22:19 +0100
committerboucherv <valentin.boucher@orange.com>2017-02-15 10:57:37 +0100
commit8de29e4130fe18398d59692a6fcb492321ad3c60 (patch)
tree3d9674a6aa618ca6c0c83b0d91c8a1adc2996e04 /functest/utils/functest_utils.py
parent8b9cd64a7b26a8259fd39801ebe77089a10e33d5 (diff)
update cloudify_ims case
bug fixes Provisional change of the ci loop var to daily for VNF testcase. JIRA: FUNCTEST-710 Change-Id: I6dc8072b4e56c96473a2b09f1881b96024259db5 Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'functest/utils/functest_utils.py')
-rw-r--r--functest/utils/functest_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py
index 040554642..7c5c4fcc0 100644
--- a/functest/utils/functest_utils.py
+++ b/functest/utils/functest_utils.py
@@ -300,7 +300,7 @@ def get_resolvconf_ns():
while line:
ip = re.search(r"\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b", line)
if ip:
- resolver.nameservers = [str(ip)]
+ resolver.nameservers = [ip.group(0)]
try:
result = resolver.query('opnfv.org')[0]
if result != "":