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
+1 -1
View File
@@ -54,7 +54,7 @@ public abstract class TestBase {
@Before
public void setUp() throws Exception {
Thread.sleep(2000);
sock = new Socket("::1", 7234);
sock = new Socket("localhost", 7234);
encoder = CoderFactory.getInstance().newEncoder("BER");
decoder = CoderFactory.getInstance().newDecoder("BER");
}