Remove deprecated constructor in FlowRuleIntent

Change-Id: Ib5b72ed3782de2de12622db666321b327d0e8f0b
diff --git a/core/net/src/test/java/org/onosproject/net/intent/impl/IntentManagerTest.java b/core/net/src/test/java/org/onosproject/net/intent/impl/IntentManagerTest.java
index 4bf32f4..3f40de0 100644
--- a/core/net/src/test/java/org/onosproject/net/intent/impl/IntentManagerTest.java
+++ b/core/net/src/test/java/org/onosproject/net/intent/impl/IntentManagerTest.java
@@ -157,7 +157,7 @@
     private static class MockInstallableIntent extends FlowRuleIntent {
 
         public MockInstallableIntent() {
-            super(APPID, Collections.singletonList(new MockFlowRule(100)));
+            super(APPID, Collections.singletonList(new MockFlowRule(100)), Collections.emptyList());
         }
     }