Bump upstreams
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / Ipv6ArbitraryBitMaskDestinationEntrySerializerTest.java
index d08a52950899fd54fc87d146e79a93a112ccd01a..aa093a63d3a4d8a614a7704d9d83f48e210639e3 100644 (file)
@@ -38,7 +38,7 @@ public class Ipv6ArbitraryBitMaskDestinationEntrySerializerTest extends Abstract
         assertMatch(ipv6abmMatch, true, (out) -> {
             byte[] address = new byte[16];
             out.readBytes(address);
-            assertArrayEquals(address, IetfInetUtil.INSTANCE.ipv6AddressBytes(ipv6Address));
+            assertArrayEquals(address, IetfInetUtil.ipv6AddressBytes(ipv6Address));
 
             byte[] mask = new byte[16];
             out.readBytes(mask);
@@ -54,7 +54,7 @@ public class Ipv6ArbitraryBitMaskDestinationEntrySerializerTest extends Abstract
         assertMatch(ipv6abmMatchNoMask, false, (out) -> {
             byte[] address = new byte[16];
             out.readBytes(address);
-            assertArrayEquals(address, IetfInetUtil.INSTANCE.ipv6AddressBytes(ipv6Address));
+            assertArrayEquals(address, IetfInetUtil.ipv6AddressBytes(ipv6Address));
         });
     }