From f1d460aa03c2dea9fa3b9cfbdd83a48b9594284a Mon Sep 17 00:00:00 2001 From: yangyan Date: Mon, 9 Sep 2019 10:00:23 +0800 Subject: Fix invalid string error of vnf onboard Change-Id: I1f0077554db7d37ed33c45cbc68d8fb554339539 Issue-ID: INT-1239 Signed-off-by: yangyan --- test/hpa_automation/tosca/hpa_automation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hpa_automation/tosca/hpa_automation.py b/test/hpa_automation/tosca/hpa_automation.py index a969913b5..08966d9a5 100755 --- a/test/hpa_automation/tosca/hpa_automation.py +++ b/test/hpa_automation/tosca/hpa_automation.py @@ -380,7 +380,7 @@ def onboard_vnf(parameters): for key, value in vnfs.items(): vnf_onboard_string = 'oclip vfc-catalog-onboard-vnf -c {}'.format(value.get("csar-id")) - vnf_onboard_outs[key] = (os.popen(ns_onboard_string)).read() + vnf_onboard_outputs[key] = (os.popen(vnf_onboard_string)).read() return vnf_onboard_outputs def onboard_ns(parameters): -- cgit 1.2.3-korg