Removed enumeration ALL from FlowWildCardsV10
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / util / OF10MatchDeserializerTest.java
index 30c2c3f9265040fb1f5f8dc8adf73e1003296fa6..61da809fe65e3e8b6705dfe071de7e31b67c223c 100644 (file)
@@ -33,7 +33,7 @@ public class OF10MatchDeserializerTest {
                 + "50 50 20 20");
         message.skipBytes(4); // skip XID
         MatchV10 match = OF10MatchDeserializer.createMatchV10(message);
-        Assert.assertEquals("Wrong wildcards", new FlowWildcardsV10(false, false, false, true, false,
+        Assert.assertEquals("Wrong wildcards", new FlowWildcardsV10(false, false, true, false,
                 false, true, false, true, true, false), match.getWildcards());
         Assert.assertEquals("Wrong srcMask", 24, match.getNwSrcMask().shortValue());
         Assert.assertEquals("Wrong dstMask", 16, match.getNwDstMask().shortValue());
@@ -61,7 +61,7 @@ public class OF10MatchDeserializerTest {
                 + "50 50 20 20");
         message.skipBytes(4); // skip XID
         MatchV10 match = OF10MatchDeserializer.createMatchV10(message);
-        Assert.assertEquals("Wrong wildcards", new FlowWildcardsV10(true, true, true, true, true,
+        Assert.assertEquals("Wrong wildcards", new FlowWildcardsV10(true, true, true, true,
                 true, true, true, true, true, true), match.getWildcards());
         Assert.assertEquals("Wrong srcMask", 0, match.getNwSrcMask().shortValue());
         Assert.assertEquals("Wrong dstMask", 0, match.getNwDstMask().shortValue());