From 1738ce174005096f4106673bb5b35cd1351a5f56 Mon Sep 17 00:00:00 2001 From: Wilder Rodrigues Date: Sat, 5 Dec 2015 17:33:55 +0100 Subject: [PATCH] CLOUDSTACK-9106 - Enables private gateway tests on Redundant VPCs --- test/integration/smoke/test_privategw_acl.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/integration/smoke/test_privategw_acl.py b/test/integration/smoke/test_privategw_acl.py index 9b85fe8732d..7231a4b630b 100644 --- a/test/integration/smoke/test_privategw_acl.py +++ b/test/integration/smoke/test_privategw_acl.py @@ -242,7 +242,6 @@ class TestPrivateGwACL(cloudstackTestCase): @attr(tags=["advanced"], required_hardware="true") def test_02_vpc_privategw_static_routes(self): - self.logger.debug("Creating a VPC offering..") vpc_off = VpcOffering.create( self.apiclient, @@ -255,8 +254,6 @@ class TestPrivateGwACL(cloudstackTestCase): @attr(tags=["advanced"], required_hardware="true") def test_03_rvpc_privategw_static_routes(self): - self.skipTest("Redundant VPC Routers have to be fixed. Private Gateway not working yet.") - self.logger.debug("Creating a Redundant VPC offering..") vpc_off = VpcOffering.create( self.apiclient, @@ -268,7 +265,6 @@ class TestPrivateGwACL(cloudstackTestCase): self.performVPCTests(vpc_off) def performVPCTests(self, vpc_off): - self.logger.debug("Creating VPCs with offering ID %s" % vpc_off.id) vpc_1 = self.createVPC(vpc_off, cidr = '10.0.1.0/24') vpc_2 = self.createVPC(vpc_off, cidr = '10.0.2.0/24')