X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fprotocol%2Fserialization%2Fmatch%2FIpv6ExtHeaderEntrySerializerTest.java;h=1d3597886a8d1d25524d70913608b0602063169c;hb=08614b02699a03ff8604f3bf7531f0575134cf90;hp=d450af5f87313b90ec79a3346f616d577c029f76;hpb=d6acc80a3f3bf154a6b2c8a220e66e72530e4865;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/Ipv6ExtHeaderEntrySerializerTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/Ipv6ExtHeaderEntrySerializerTest.java index d450af5f87..1d3597886a 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/Ipv6ExtHeaderEntrySerializerTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/Ipv6ExtHeaderEntrySerializerTest.java @@ -5,14 +5,12 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.openflowplugin.impl.protocol.serialization.match; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import org.junit.Test; -import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants; import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants; import org.opendaylight.openflowplugin.openflow.md.util.ByteUtil; import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder; @@ -21,7 +19,6 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._3.match.Ipv6MatchBuilder; public class Ipv6ExtHeaderEntrySerializerTest extends AbstractMatchEntrySerializerTest { - @Test public void testSerialize() { final int ipv6extHdr = 358; @@ -57,7 +54,7 @@ public class Ipv6ExtHeaderEntrySerializerTest extends AbstractMatchEntrySerializ @Override protected short getLength() { - return EncodeConstants.SIZE_OF_SHORT_IN_BYTES; + return Short.BYTES; } @Override @@ -69,5 +66,4 @@ public class Ipv6ExtHeaderEntrySerializerTest extends AbstractMatchEntrySerializ protected int getOxmClassCode() { return OxmMatchConstants.OPENFLOW_BASIC_CLASS; } - }