Speed up lbaasv2 test

If we reached the number of expected responses, return in the loop that
check for lbaas.

Change-Id: Ic18e5589a70b10aefabe22cb51891478500e8128
Related-Bug: #1617992
This commit is contained in:
Thomas Herve 2016-08-29 14:08:15 +02:00
parent f15cdb392b
commit 96faa97db3
1 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,8 @@ class AutoscalingLoadBalancerv2Test(scenario_base.ScenarioTestsBase):
# skip unsuccessful requests
if r.status_code == 200:
resp.add(r.text)
if len(resp) == expected_num:
break
self.assertEqual(expected_num, len(resp))
def test_autoscaling_loadbalancer_neutron(self):