Revert "CLOUDSTACK-6747 test for test to allow all cidrs on other end of a vpc"

This reverts commit 218c4713ae.
This commit is contained in:
Daan Hoogland 2014-06-25 17:06:10 +02:00
parent 218c4713ae
commit d90b8d88ed
1 changed files with 0 additions and 12 deletions

View File

@ -230,18 +230,6 @@ public class NetUtilsTest {
assertTrue(NetUtils.isValidCIDR(cidrThird));
}
@Test
public void testIsValidCidrList() throws Exception {
//Test to check IP Range of 2 CIDR
String cidrFirst = "10.0.144.0/20,1.2.3.4/32,5.6.7.8/24";
String cidrSecond = "10.0.151.0/20,129.0.0.0/4";
String cidrThird = "10.0.144.0/21";
assertTrue(NetUtils.isValidCIDR(cidrFirst));
assertTrue(NetUtils.isValidCIDR(cidrSecond));
assertTrue(NetUtils.isValidCIDR(cidrThird));
}
@Test
public void testIsSameIpRange() {
String cidrFirst = "10.0.144.0/20";