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%2FBasicIntegrationTest.java;h=a718ca7e4c31ef16d6be1fb26e839f3f551450e2;hb=a888890a7dc49005eb5461c9cefe3dd5eccbe6a0;hp=7b826302f588ad76be85f54c9e17bcc1c8dff56a;hpb=05193e1f77cb4f1be9a58b946cd11e619c10bb8c;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/BasicIntegrationTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/BasicIntegrationTest.java index 7b826302f5..a718ca7e4c 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/BasicIntegrationTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/BasicIntegrationTest.java @@ -8,7 +8,6 @@ package org.opendaylight.controller.cluster.datastore; -import akka.actor.ActorPath; import akka.actor.ActorRef; import akka.actor.ActorSelection; import akka.actor.Props; @@ -134,11 +133,10 @@ public class BasicIntegrationTest extends AbstractActorTest { @Override protected ActorSelection match(Object in) { if (in.getClass().equals(ReadyTransactionReply.SERIALIZABLE_CLASS)) { - ActorPath cohortPath = - ReadyTransactionReply.fromSerializable(getSystem(),in) + String cohortPath = + ReadyTransactionReply.fromSerializable(in) .getCohortPath(); - return getSystem() - .actorSelection(cohortPath); + return getSystem().actorSelection(cohortPath); } else { throw noMatch(); }