BUG-5280: switch tests to ClientBackedDataStore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / persisted / AbortTransactionPayloadTest.java
index c0f63a5ce85210ce92e78331925ce5bbaafa1a37..43b2c9eaa99725d932178d52c84e84b914fbbde2 100644 (file)
@@ -8,14 +8,14 @@
 package org.opendaylight.controller.cluster.datastore.persisted;
 
 import static org.junit.Assert.assertEquals;
-import java.io.IOException;
+
 import org.apache.commons.lang3.SerializationUtils;
 import org.junit.Test;
 import org.opendaylight.controller.cluster.datastore.AbstractTest;
 
 public class AbortTransactionPayloadTest extends AbstractTest {
     @Test
-    public void testPayloadSerDes() throws IOException {
+    public void testPayloadSerDes() {
         final AbortTransactionPayload template = AbortTransactionPayload.create(nextTransactionId());
         final AbortTransactionPayload cloned = SerializationUtils.clone(template);
         assertEquals(template.getIdentifier(), cloned.getIdentifier());