Fix intermittent failure in testCloseCandidateRegistrationInQuickSuccession
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / DatastoreSnapshotRestoreTest.java
index 3feb9067ab24cab152cf66d1055ff19b6b19da73..1c262ff72e2a752bc88b0431681b875bbc0ece19 100644 (file)
@@ -49,13 +49,13 @@ public class DatastoreSnapshotRestoreTest {
         List<ShardSnapshot> shardSnapshots = new ArrayList<>();
         shardSnapshots.add(new ShardSnapshot("cars", new byte[]{1,2}));
         shardSnapshots.add(new ShardSnapshot("people", new byte[]{3,4}));
-        final DatastoreSnapshot configSnapshot = new DatastoreSnapshot("config", null, shardSnapshots );
+        final DatastoreSnapshot configSnapshot = new DatastoreSnapshot("config", null, shardSnapshots);
 
         shardSnapshots = new ArrayList<>();
         shardSnapshots.add(new ShardSnapshot("cars", new byte[]{5,6}));
         shardSnapshots.add(new ShardSnapshot("people", new byte[]{7,8}));
         shardSnapshots.add(new ShardSnapshot("bikes", new byte[]{9,0}));
-        DatastoreSnapshot operSnapshot = new DatastoreSnapshot("oper", null, shardSnapshots );
+        DatastoreSnapshot operSnapshot = new DatastoreSnapshot("oper", null, shardSnapshots);
 
         DatastoreSnapshotList snapshotList = new DatastoreSnapshotList();
         snapshotList.add(configSnapshot);