X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-remoterpc-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fremote%2Frpc%2Fregistry%2Fgossip%2FBucketStoreTest.java;h=ed6d12c34d6883d22905ae7f9d025164a8122688;hp=b9784ab390a1a85ecc089b90b9373f5361fa45d1;hb=927bce5688e4b9d33d3e5e9b769d8a0dba5ccdd4;hpb=a2b838f96589b502578fa4e15cef2769f886a378 diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/registry/gossip/BucketStoreTest.java b/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/registry/gossip/BucketStoreTest.java index b9784ab390..ed6d12c34d 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/registry/gossip/BucketStoreTest.java +++ b/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/registry/gossip/BucketStoreTest.java @@ -22,7 +22,7 @@ import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; -import org.opendaylight.controller.remote.rpc.RemoteRpcProviderConfig; +import org.opendaylight.controller.remote.rpc.RemoteOpsProviderConfig; import org.opendaylight.controller.remote.rpc.TerminationMonitor; public class BucketStoreTest { @@ -140,13 +140,13 @@ public class BucketStoreTest { */ private static BucketStoreActor createStore() { final Props props = Props.create(TestingBucketStoreActor.class, - new RemoteRpcProviderConfig(system.settings().config()), "testing-store",new T()); + new RemoteOpsProviderConfig(system.settings().config()), "testing-store",new T()); return TestActorRef.>create(system, props, "testStore").underlyingActor(); } private static final class TestingBucketStoreActor extends BucketStoreActor { - protected TestingBucketStoreActor(final RemoteRpcProviderConfig config, + protected TestingBucketStoreActor(final RemoteOpsProviderConfig config, final String persistenceId, final T initialData) { super(config, persistenceId, initialData);