Not registering agents (And waiting for them) shaves a couple
of seconds off the test run. More importantly it sets the correct
precedent / usage pattern for future copy/pastes.
Change-Id: I7f91a9d44af28ac0652ed0b054419a71ed7bb1b1
class TestQoSWithL2Population(base.BaseFullStackTestCase):
def setUp(self):
- host_desc = [environment.HostDescription()]
+ host_desc = [] # No need to register agents for this test case
env_desc = environment.EnvironmentDescription(qos=True, l2_pop=True)
env = environment.Environment(env_desc, host_desc)
super(TestQoSWithL2Population, self).setUp(env)