From d5761ea65ba6cffecc2f79af2b76cbce380a4547 Mon Sep 17 00:00:00 2001 From: Chandan Purushothama Date: Wed, 26 Nov 2014 16:16:37 -0800 Subject: [PATCH] CLOUDSTACK-7980 : Fixed the script '/maint/test_egress_rules_host_maintenance.py' - Zone Network Type Information should to be passed to VirtualMachine create method --- .../component/maint/test_egress_rules_host_maintenance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/component/maint/test_egress_rules_host_maintenance.py b/test/integration/component/maint/test_egress_rules_host_maintenance.py index a27ada3dcae..5018a14b1cf 100644 --- a/test/integration/component/maint/test_egress_rules_host_maintenance.py +++ b/test/integration/component/maint/test_egress_rules_host_maintenance.py @@ -234,7 +234,8 @@ class TestEgressAfterHostMaintenance(cloudstackTestCase): accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, - securitygroupids=[security_group.id] + securitygroupids=[security_group.id], + mode=self.services["mode"] ) self.debug("Deploying VM in account: %s" % self.account.name)