Make AbstractIdentifiablePayloadTest public 04/54804/3
authorTom Pantelis <tompantelis@gmail.com>
Tue, 11 Apr 2017 17:24:01 +0000 (13:24 -0400)
committerTom Pantelis <tompantelis@gmail.com>
Fri, 14 Apr 2017 18:02:09 +0000 (18:02 +0000)
For some reason, tests derived from AbstractIdentifiablePayloadTest
fail b/c AbstractIdentifiablePayloadTest isn't public when running from
eclipse - runs fine from command line.

Change-Id: Ie6ed1d6e0e130a1ffc5ad04db93e037ea6a79549
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/persisted/AbstractIdentifiablePayloadTest.java

index 2ff9a915ce6e8ed9480f64b2641b72e44cc6ab67..e53b026023de75f86abce9e2e39b194122ff573f 100644 (file)
@@ -12,7 +12,7 @@ import org.junit.Assert;
 import org.junit.Test;
 import org.opendaylight.controller.cluster.datastore.AbstractTest;
 
 import org.junit.Test;
 import org.opendaylight.controller.cluster.datastore.AbstractTest;
 
-abstract class AbstractIdentifiablePayloadTest<T extends AbstractIdentifiablePayload> extends AbstractTest {
+public abstract class AbstractIdentifiablePayloadTest<T extends AbstractIdentifiablePayload> extends AbstractTest {
 
     abstract T object();
 
 
     abstract T object();