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%2FDatastoreContextIntrospectorTest.java;h=e397d1bb4e816296bc5676c122b71a95a9fe6cf5;hb=5c08efbf3a3d046a7650f1b32a6cacfb1e4a6d0d;hp=b470018c5f4a224a02203468acfe840584764ce8;hpb=5464f50be733df1bbbe31cf05665d542d3b7c5e7;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DatastoreContextIntrospectorTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DatastoreContextIntrospectorTest.java index b470018c5f..e397d1bb4e 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DatastoreContextIntrospectorTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DatastoreContextIntrospectorTest.java @@ -32,7 +32,7 @@ public class DatastoreContextIntrospectorTest { public void testUpdate() { DatastoreContext context = DatastoreContext.newBuilder() .logicalStoreType(LogicalDatastoreType.OPERATIONAL).build(); - DatastoreContextIntrospector introspector = new DatastoreContextIntrospector(context ); + DatastoreContextIntrospector introspector = new DatastoreContextIntrospector(context); Dictionary properties = new Hashtable<>(); properties.put("shard-transaction-idle-timeout-in-minutes", "31"); @@ -122,7 +122,7 @@ public class DatastoreContextIntrospectorTest { public void testUpdateWithInvalidValues() { DatastoreContext context = DatastoreContext.newBuilder() .logicalStoreType(LogicalDatastoreType.OPERATIONAL).build(); - DatastoreContextIntrospector introspector = new DatastoreContextIntrospector(context ); + DatastoreContextIntrospector introspector = new DatastoreContextIntrospector(context); Dictionary properties = new Hashtable<>(); properties.put("shard-transaction-idle-timeout-in-minutes", "0"); // bad - must be > 0