1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-23 20:42:06 +01:00

Merge branch 'fixProxyTest' into jingle2

This commit is contained in:
vanitasvitae 2017-06-23 13:01:50 +02:00
commit ab82a58e0f

View file

@ -102,10 +102,15 @@ public class Socks5ProxyTest {
@Test @Test
public void shouldPreserveAddressOrderOnInsertions() { public void shouldPreserveAddressOrderOnInsertions() {
Socks5Proxy proxy = Socks5Proxy.getSocks5Proxy(); Socks5Proxy proxy = Socks5Proxy.getSocks5Proxy();
List<String> addresses = new ArrayList<String>(proxy.getLocalAddresses()); List<String> addresses = new ArrayList<>(proxy.getLocalAddresses());
addresses.add("1");
addresses.add("2"); for (int i = 1 ; i <= 3; i++) {
addresses.add("3"); String addr = Integer.toString(i);
if (!addresses.contains(addr)) {
addresses.add(addr);
}
}
for (String address : addresses) { for (String address : addresses) {
proxy.addLocalAddress(address); proxy.addLocalAddress(address);
} }