Fixing missed merge of ProxyConfigurationTest

This commit is contained in:
Joakim Erdfelt 2018-09-07 11:58:30 -05:00
parent d134c9b8fa
commit d237b5ca2f
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ public class ProxyConfigurationTest
proxy.getExcludedAddresses().add("[1::2:3:4]:5");
assertFalse(proxy.matches(new Origin("http", "any", 0)));
assertTrue(proxy.matches(new Origin("http", "1::2:3:4", 0)));
assertFalse(proxy.matches(new Origin("http", "1::2:3:4", 5)));
assertTrue(proxy.matches(new Origin("http", "[1::2:3:4]", 0)));
assertFalse(proxy.matches(new Origin("http", "[1::2:3:4]", 5)));
}
}