Bump persisted PayloadVersion
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / entityownership / AbstractClusterRefEntityOwnershipTest.java
index 13541358adf58c7accfcb61282fa475e5213bf74..4c8cfcc25b5ed8cc76e175bc19f04293aa2c01d9 100644 (file)
@@ -9,9 +9,8 @@
 package org.opendaylight.controller.cluster.datastore.entityownership;
 
 import akka.actor.ActorSystem;
-import akka.testkit.JavaTestKit;
+import akka.testkit.javadsl.TestKit;
 import com.typesafe.config.ConfigFactory;
-import java.io.IOException;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 
@@ -20,13 +19,13 @@ public class AbstractClusterRefEntityOwnershipTest extends AbstractEntityOwnersh
     private static ActorSystem system;
 
     @BeforeClass
-    public static void setUpClass() throws IOException {
-        system = ActorSystem.create("test", ConfigFactory.load().getConfig("test"));
+    public static void setUpClass() {
+        system = ActorSystem.create("test", ConfigFactory.load().getConfig("test-config"));
     }
 
     @AfterClass
-    public static void tearDownClass() throws IOException {
-        JavaTestKit.shutdownActorSystem(system);
+    public static void tearDownClass() {
+        TestKit.shutdownActorSystem(system);
         system = null;
     }