X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fprotocol%2Fdeserialization%2Fmatch%2FArpSourceHardwareAddressEntryDeserializerTest.java;h=b05af98df53a284a2be6ec3c4801bf191204f39e;hb=dc2befb3188ea11dfd0d74d375a8d3acf3619d38;hp=8d9c81e14266f742d85162cb4dcf90ee266324ad;hpb=21c984447de25eb251e2ed51b64f9ef486e8c3a4;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/match/ArpSourceHardwareAddressEntryDeserializerTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/match/ArpSourceHardwareAddressEntryDeserializerTest.java index 8d9c81e142..b05af98df5 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/match/ArpSourceHardwareAddressEntryDeserializerTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/deserialization/match/ArpSourceHardwareAddressEntryDeserializerTest.java @@ -28,7 +28,7 @@ public class ArpSourceHardwareAddressEntryDeserializerTest extends AbstractMatch final MacAddress arpSourceHardwareAddressMask = new MacAddress("00:00:00:00:00:00"); writeHeader(in, false); - in.writeBytes(IetfYangUtil.INSTANCE.macAddressBytes(arpSourceHardwareAddress)); + in.writeBytes(IetfYangUtil.macAddressBytes(arpSourceHardwareAddress)); assertEquals(arpSourceHardwareAddress.getValue(), ((ArpMatch) deserialize(in).getLayer3Match()).getArpSourceHardwareAddress().getAddress() @@ -36,8 +36,8 @@ public class ArpSourceHardwareAddressEntryDeserializerTest extends AbstractMatch assertEquals(0, in.readableBytes()); writeHeader(in, true); - in.writeBytes(IetfYangUtil.INSTANCE.macAddressBytes(arpSourceHardwareAddress)); - in.writeBytes(IetfYangUtil.INSTANCE.macAddressBytes(arpSourceHardwareAddressMask)); + in.writeBytes(IetfYangUtil.macAddressBytes(arpSourceHardwareAddress)); + in.writeBytes(IetfYangUtil.macAddressBytes(arpSourceHardwareAddressMask)); final ArpSourceHardwareAddress desAddress = ((ArpMatch) deserialize(in).getLayer3Match()).getArpSourceHardwareAddress();