CLOUDSTACK-2542: Fix router test for basic zone

Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
SrikanteswaraRao Talluri 2013-05-16 17:29:12 +05:30 committed by Prasanna Santhanam
parent 55d304a5bb
commit 2867c6a6df

View File

@ -141,6 +141,12 @@ class TestRouterServices(cloudstackTestCase):
# by checking status of dnsmasq process # by checking status of dnsmasq process
# Find router associated with user account # Find router associated with user account
if self.zone.networktype == "Basic":
list_router_response = list_routers(
self.apiclient,
listall="true"
)
else:
list_router_response = list_routers( list_router_response = list_routers(
self.apiclient, self.apiclient,
account=self.account.name, account=self.account.name,