Bug 5540 - ConvertorManager base
[openflowplugin.git] / openflowplugin / src / test / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / flowflag / FlowFlagReactorTest.java
index 0e2c685b5a2ef3e6a04d8982eb78b8c088c64f6d..ac54c827bbc6fa231e466fa08cd8884d6f8ff9ce 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.flowflag;
 
-import java.math.BigInteger;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
@@ -43,7 +42,7 @@ public class FlowFlagReactorTest {
         for (FlowModFlags fFlag : flowFlags) {
             target.setFlags(null);
             FlowFlagReactor.getInstance().convert(fFlag,
-                    OFConstants.OFP_VERSION_1_3, target,BigInteger.valueOf(1));
+                    OFConstants.OFP_VERSION_1_3, target);
             Assert.assertNotNull(target.getFlags());
         }
     }
@@ -57,7 +56,7 @@ public class FlowFlagReactorTest {
         for (FlowModFlags fFlag : flowFlags) {
             target.setFlagsV10(null);
             FlowFlagReactor.getInstance().convert(fFlag,
-                    OFConstants.OFP_VERSION_1_0, target,BigInteger.valueOf(1));
+                    OFConstants.OFP_VERSION_1_0, target);
             Assert.assertNotNull(target.getFlagsV10());
         }
     }