Make test cases ipv4 compatible (they were ipv6 only...)

This commit is contained in:
lotodore
2011-01-29 16:35:04 +00:00
parent c82643f108
commit be3767b15e
3 changed files with 4 additions and 2 deletions
@@ -130,7 +130,7 @@ public class RunRankingGameTest extends TestBase {
Socket s[] = new Socket[9];
long playerId[] = new long[9];
for (int i = 0; i < 9; i++) {
s[i] = new Socket("::1", 7234);
s[i] = new Socket("localhost", 7234);
String username = "test" + (i+1);
String password = username;
playerId[i] = userInit(s[i], username, password);