Filter out external networks in NetworksSearchCriteriaTest

Otherwise those networks that may even belong to another tenant still
show up in the results that we then compare iterated networks to.

Change-Id: I24b117401a1886dce0b78900b522ac9bace533bf
Closes-Bug: #1614964
This commit is contained in:
Ihar Hrachyshka 2016-08-19 14:32:12 +01:00
parent b9169e34e3
commit c3c9cdd6f2
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class NetworksSearchCriteriaTest(base.BaseSearchCriteriaTest):
resource = 'network'
list_kwargs = {'shared': False}
list_kwargs = {'shared': False, 'router:external': False}
@classmethod
def resource_setup(cls):