Remove Helium Tx modify operation messages
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / ReadyTransactionReplyTest.java
index db525eafbeb5b762f82101e8237c7feb7e6bf205..033687ae6db486aafc6b306018b4be4aa5083988 100644 (file)
@@ -12,7 +12,6 @@ import java.io.Serializable;
 import org.apache.commons.lang.SerializationUtils;
 import org.junit.Test;
 import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
-import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages;
 
 /**
  * Unit tests for ReadyTransactionReply.
@@ -34,18 +33,4 @@ public class ReadyTransactionReplyTest {
         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
         assertEquals("getCohortPath", cohortPath, actual.getCohortPath());
     }
-
-    @Test
-    public void testSerializationWithPreLithiumVersion() throws Exception {
-        String cohortPath = "cohort path";
-        ReadyTransactionReply expected = new ReadyTransactionReply(cohortPath, DataStoreVersions.HELIUM_2_VERSION);
-
-        Object serialized = expected.toSerializable();
-        assertEquals("Serialized type", ShardTransactionMessages.ReadyTransactionReply.class, serialized.getClass());
-
-        ReadyTransactionReply actual = ReadyTransactionReply.fromSerializable(SerializationUtils.clone(
-                (Serializable) serialized));
-        assertEquals("getVersion", DataStoreVersions.HELIUM_2_VERSION, actual.getVersion());
-        assertEquals("getCohortPath", cohortPath, actual.getCohortPath());
-    }
 }