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
This commit is contained in:
Bharath bhushan patel 2018-09-12 11:50:15 +00:00
parent b7adfd4381
commit e4d21ec667
1 changed files with 1 additions and 0 deletions

View File

@ -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()