Fix unit test CS warnings in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / AbortTransactionTest.java
index 2e298acc3f45b861f241ffbf74eebffe408877af..208e9ab46875773b64e4f6f3f3f9219aecd04f49 100644 (file)
@@ -8,6 +8,7 @@
 package org.opendaylight.controller.cluster.datastore.messages;
 
 import static org.junit.Assert.assertEquals;
+
 import java.io.Serializable;
 import org.apache.commons.lang.SerializationUtils;
 import org.junit.Test;
@@ -24,7 +25,8 @@ public class AbortTransactionTest {
     @Test
     public void testSerialization() {
         AbortTransaction expected = new AbortTransaction(
-            MockIdentifiers.transactionIdentifier(AbortTransactionTest.class, "mock"), DataStoreVersions.CURRENT_VERSION);
+            MockIdentifiers.transactionIdentifier(AbortTransactionTest.class, "mock"),
+            DataStoreVersions.CURRENT_VERSION);
 
         Object serialized = expected.toSerializable();
         assertEquals("Serialized type", AbortTransaction.class, serialized.getClass());