From 6d0ae9c5d9a41b9cc55412bb7a6aca3b36ab6622 Mon Sep 17 00:00:00 2001 From: George Paraskevopoulos Date: Fri, 16 Dec 2016 12:49:52 +0200 Subject: Fix create_glance_image call Change https://gerrit.opnfv.org/gerrit/#/c/25725/ modified functest API create_glance_image requires the kw arg public to be one of ['public'|'private'] Change-Id: I7f963b0fb20e71c254a1c604021e1ce0b1f049df Signed-off-by: George Paraskevopoulos --- sfc/tests/functest/sfc.py | 2 +- .../functest/sfc_one_chain_two_service_functions_different_computes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sfc/tests') diff --git a/sfc/tests/functest/sfc.py b/sfc/tests/functest/sfc.py index 45fb9b0f..04d12cfb 100644 --- a/sfc/tests/functest/sfc.py +++ b/sfc/tests/functest/sfc.py @@ -92,7 +92,7 @@ def main(): COMMON_CONFIG.image_name, COMMON_CONFIG.image_path, COMMON_CONFIG.image_format, - public=True) + public='public') network_id = test_utils.setup_neutron(neutron_client, TESTCASE_CONFIG.net_name, diff --git a/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py b/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py index f901a041..5a59b4ec 100644 --- a/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py +++ b/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py @@ -131,7 +131,7 @@ def main(): COMMON_CONFIG.image_name, COMMON_CONFIG.image_path, COMMON_CONFIG.image_format, - public=True) + public='public') network_id = test_utils.setup_neutron(neutron_client, TESTCASE_CONFIG.net_name, -- cgit 1.2.3-korg