mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-24 04:52:05 +01:00
Merge branch 'fixProxyTest' into jingle2
This commit is contained in:
commit
ab82a58e0f
1 changed files with 9 additions and 4 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue