summaryrefslogtreecommitdiff
path: root/same/src/test/java/com/orbekk/same/MasterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'same/src/test/java/com/orbekk/same/MasterTest.java')
-rw-r--r--same/src/test/java/com/orbekk/same/MasterTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/same/src/test/java/com/orbekk/same/MasterTest.java b/same/src/test/java/com/orbekk/same/MasterTest.java
index e6f9686..85f737a 100644
--- a/same/src/test/java/com/orbekk/same/MasterTest.java
+++ b/same/src/test/java/com/orbekk/same/MasterTest.java
@@ -27,7 +27,7 @@ import org.junit.Test;
public class MasterTest {
private ExecutorService executor = Executors.newCachedThreadPool();
- private State state = new State("TestNetwork");
+ private State state = new State();
private TestConnectionManager connections = new TestConnectionManager();
private Master master;
private RpcFactory rpcf = new RpcFactory(5000);
@@ -45,7 +45,7 @@ public class MasterTest {
@Test
public void clientJoin() throws Exception {
Client client = new Client(
- new State("ClientNetwork"), connections,
+ new State(), connections,
"http://client/ClientService.json", "clientLocation", rpcf,
executor);
connections.clientMap0.put("clientLocation", client.getNewService());