diff --git a/src/test/java/net/floodlightcontroller/flowcache/FlowReconcileMgrTest.java b/src/test/java/net/floodlightcontroller/flowcache/FlowReconcileMgrTest.java index 39f92f64538fa5004918fd0416ab9d45a8e472e9..62ccecdf69fefab4db37686abb7c273d4420075f 100644 --- a/src/test/java/net/floodlightcontroller/flowcache/FlowReconcileMgrTest.java +++ b/src/test/java/net/floodlightcontroller/flowcache/FlowReconcileMgrTest.java @@ -496,7 +496,7 @@ public class FlowReconcileMgrTest extends FloodlightTestCase { Date currTime = new Date(); assertTrue((currTime.getTime() - startTime.getTime()) < 1000); } - + // Make sure all flows are in the queue. assertEquals(totalFlows, flowReconcileMgr.flowQueue.size()); } @@ -507,7 +507,7 @@ public class FlowReconcileMgrTest extends FloodlightTestCase { OFMatchReconcile ofmRc = new OFMatchReconcile(); // push large number of flows to be reconciled. for (int i = 0; i < NUM_FLOWS_PER_THREAD; i++) { - flowReconcileMgr.reconcileFlow(ofmRc,EventPriority.HIGH); + flowReconcileMgr.reconcileFlow(ofmRc,EventPriority.LOW); } } }