Merge "Remove incorrect filter on listing subnets"

This commit is contained in:
Zuul 2018-07-09 16:10:57 +00:00 committed by Gerrit Code Review
commit 5fece0e41f
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class TestAutoAllocatedTopology(base.BaseAdminNetworkTest):
up = {'admin_state_up': True}
networks = _count(self.client.list_networks(**up)['networks'])
subnets = _count(self.client.list_subnets(**up)['subnets'])
subnets = _count(self.client.list_subnets()['subnets'])
routers = _count(self.client.list_routers(**up)['routers'])
return networks, subnets, routers