Removed a bogus expect() statement that is not needed anymore.
The issue was exposed after commit 88a7a3b6ef23871ea00cc8f87b484bd1ce553b8d
removed an unneeded statement "floodlightProvider.getSwitches()"
inside FlowManager.reconcileFlow() was removed.
diff --git a/src/test/java/net/onrc/onos/ofcontroller/flowmanager/FlowManagerTest.java b/src/test/java/net/onrc/onos/ofcontroller/flowmanager/FlowManagerTest.java
index 68e31ba..5a1549b 100644
--- a/src/test/java/net/onrc/onos/ofcontroller/flowmanager/FlowManagerTest.java
+++ b/src/test/java/net/onrc/onos/ofcontroller/flowmanager/FlowManagerTest.java
@@ -885,7 +885,6 @@
// setup expectations
expectInitWithContext();
- expect(floodlightProvider.getSwitches()).andReturn(null); // TODO: why is this needed?
expect(iFlowPath1.getFlowEntries()).andReturn(oldFlowEntries);
iFlowEntry1.setUserState("FE_USER_DELETE");
iFlowEntry1.setSwitchState("FE_SWITCH_NOT_UPDATED");