ARTEMIS-1894 Avoiding apache.org URL on codebase
This commit is contained in:
parent
c1a458bb69
commit
1369690f57
|
@ -172,9 +172,8 @@ public class NetworkHealthTest {
|
|||
NetworkHealthCheck check = addCheck(new NetworkHealthCheck(null, 100, 100));
|
||||
|
||||
// using two addresses for URI and localhost
|
||||
check.parseAddressList("localhost, , 127.0.0.2").parseURIList("http://www.redhat.com, , http://www.apache.org");
|
||||
check.parseAddressList("localhost, , 127.0.0.2");
|
||||
Assert.assertEquals(2, check.getAddresses().size());
|
||||
Assert.assertEquals(2, check.getUrls().size());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -182,9 +181,9 @@ public class NetworkHealthTest {
|
|||
NetworkHealthCheck check = addCheck(new NetworkHealthCheck(null, 100, 100));
|
||||
|
||||
// using two addresses for URI and localhost
|
||||
check.parseAddressList("localhost, , 127.0.0.2").parseURIList("http://www.redhat.com, , http://www.apache.org");
|
||||
check.parseAddressList("localhost, , 127.0.0.2");
|
||||
Assert.assertEquals(2, check.getAddresses().size());
|
||||
Assert.assertEquals(2, check.getUrls().size());
|
||||
Assert.assertEquals(0, check.getUrls().size());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue