From e4d21ec667892cdf3ccdf4b51af07d46aebbea1b Mon Sep 17 00:00:00 2001 From: Bharath bhushan patel Date: Wed, 12 Sep 2018 11:50:15 +0000 Subject: [PATCH] Handled routers attribute which was causing tempest failures. Attribute routers was not present under specific objects so handled it to be an empty list under class to avoid failure. Change-Id: I83b604b2a102b967505145b7ad584abebfeb244c --- vmware_nsx_tempest_plugin/tests/nsxv/api/test_router_sizes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vmware_nsx_tempest_plugin/tests/nsxv/api/test_router_sizes.py b/vmware_nsx_tempest_plugin/tests/nsxv/api/test_router_sizes.py index 691a333..e481ed7 100644 --- a/vmware_nsx_tempest_plugin/tests/nsxv/api/test_router_sizes.py +++ b/vmware_nsx_tempest_plugin/tests/nsxv/api/test_router_sizes.py @@ -73,6 +73,7 @@ class RouterSizeBaseTest(base.BaseAdminNetworkTest): CONF.nsxv.manager_uri).group(0) cls.vsm = nsxv_client.VSMClient( manager_ip, CONF.nsxv.user, CONF.nsxv.password) + cls.routers = [] def setUp(self): super(RouterSizeBaseTest, self).setUp()