X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardTest.java;h=b5a341d95c950dd859e755d135be2c3354388dbc;hb=af01f3ff581487d002140ca08a94e4636546d649;hp=775b881b60214f7170cd7deb9d9bf4e0b75525c9;hpb=c7ec8db7f107b5e265f4e8b2fe3dd0f7b1163b64;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTest.java index 775b881b60..b5a341d95c 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTest.java @@ -20,10 +20,10 @@ import static org.junit.Assert.assertTrue; public class ShardTest extends AbstractActorTest{ @Test - public void testOnReceiveCreateTransaction() throws Exception { + public void testOnReceiveCreateTransactionChain() throws Exception { new JavaTestKit(getSystem()) {{ final Props props = Props.create(Shard.class); - final ActorRef subject = getSystem().actorOf(props, "testCreateTransaction"); + final ActorRef subject = getSystem().actorOf(props, "testCreateTransactionChain"); new Within(duration("1 seconds")) { protected void run() { @@ -42,7 +42,7 @@ public class ShardTest extends AbstractActorTest{ } }.get(); // this extracts the received message - assertTrue(out.matches("akka:\\/\\/test\\/user\\/testCreateTransaction\\/\\$.*")); + assertTrue(out.matches("akka:\\/\\/test\\/user\\/testCreateTransactionChain\\/\\$.*")); // Will wait for the rest of the 3 seconds expectNoMsg(); }