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%2FEthernetDestinationEntrySerializerTest.java;h=cab5b786d5ca163999e0d7a0789f654e4984a7cd;hb=refs%2Fchanges%2F71%2F106571%2F8;hp=3680a43b85139bd5aa9d0eed3b5930e780169fae;hpb=21c984447de25eb251e2ed51b64f9ef486e8c3a4;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/EthernetDestinationEntrySerializerTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/EthernetDestinationEntrySerializerTest.java index 3680a43b85..cab5b786d5 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/EthernetDestinationEntrySerializerTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/protocol/serialization/match/EthernetDestinationEntrySerializerTest.java @@ -37,11 +37,11 @@ public class EthernetDestinationEntrySerializerTest extends AbstractMatchEntrySe assertMatch(match, true, (out) -> { final byte[] addressBytes = new byte[6]; out.readBytes(addressBytes); - assertEquals(address, IetfYangUtil.INSTANCE.macAddressFor(addressBytes)); + assertEquals(address, IetfYangUtil.macAddressFor(addressBytes)); final byte[] maskBytes = new byte[6]; out.readBytes(maskBytes); - assertEquals(mask, IetfYangUtil.INSTANCE.macAddressFor(maskBytes)); + assertEquals(mask, IetfYangUtil.macAddressFor(maskBytes)); }); final Match matchNoMask = new MatchBuilder() @@ -55,7 +55,7 @@ public class EthernetDestinationEntrySerializerTest extends AbstractMatchEntrySe assertMatch(matchNoMask, false, (out) -> { final byte[] addressBytes = new byte[6]; out.readBytes(addressBytes); - assertEquals(address, IetfYangUtil.INSTANCE.macAddressFor(addressBytes)); + assertEquals(address, IetfYangUtil.macAddressFor(addressBytes)); }); }