From 7f2d7515e068c2ba072d4f3b4cf0997e06ae8460 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 14 Jun 2018 21:20:59 +0200 Subject: Support py3 in uncovered packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It has to be noted that cloudify_rest_client doesn't support py3 then next unit tests vs cloudify-based testcases would be excluded. Change-Id: I0b0e64929d1238665c778ce51fd6abd5ccf06b6c Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/vnf/ims/cloudify_ims_perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functest/opnfv_tests/vnf/ims/cloudify_ims_perf.py') diff --git a/functest/opnfv_tests/vnf/ims/cloudify_ims_perf.py b/functest/opnfv_tests/vnf/ims/cloudify_ims_perf.py index 37148c918..376138bb9 100644 --- a/functest/opnfv_tests/vnf/ims/cloudify_ims_perf.py +++ b/functest/opnfv_tests/vnf/ims/cloudify_ims_perf.py @@ -358,7 +358,7 @@ class CloudifyImsPerf(cloudify_ims.CloudifyIms): i = 0 for rdata in result: i = i + 1 - print rdata.address + print(rdata.address) iplistims += str(rdata.address) if i != len(result): iplistims += ';' -- cgit 1.2.3-korg