From e491334942083a81dab0f3450a809e29b0687c31 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 6 Nov 2017 10:51:27 +0100 Subject: Protect vs exceptions when ext_nets is empty MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise several exceptions are raised in TestCase constructors (those defined in heathcheck). Change-Id: I4cb054f7092ea9db02cb8c4469e99848533c556b Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/openstack/snaps/snaps_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functest/opnfv_tests/openstack/snaps') diff --git a/functest/opnfv_tests/openstack/snaps/snaps_utils.py b/functest/opnfv_tests/openstack/snaps/snaps_utils.py index 956b104ac..c3cd6245e 100644 --- a/functest/opnfv_tests/openstack/snaps/snaps_utils.py +++ b/functest/opnfv_tests/openstack/snaps/snaps_utils.py @@ -16,7 +16,7 @@ def get_ext_net_name(os_creds): """ neutron = neutron_utils.neutron_client(os_creds) ext_nets = neutron_utils.get_external_networks(neutron) - return ext_nets[0].name + return ext_nets[0].name if ext_nets else "" def get_active_compute_cnt(os_creds): -- cgit 1.2.3-korg