[SDFAB-90] Implement priority mechanism in the Policy framework.

Change-Id: I738956566bfcf1bd5e2d4fcd9bfef153b5fb674a
diff --git a/impl/src/test/java/org/onosproject/segmentrouting/policy/impl/TrafficMatchCodecTest.java b/impl/src/test/java/org/onosproject/segmentrouting/policy/impl/TrafficMatchCodecTest.java
index f78fb80..10e1d07 100644
--- a/impl/src/test/java/org/onosproject/segmentrouting/policy/impl/TrafficMatchCodecTest.java
+++ b/impl/src/test/java/org/onosproject/segmentrouting/policy/impl/TrafficMatchCodecTest.java
@@ -30,6 +30,7 @@
 import org.onosproject.net.flow.TrafficSelector;
 import org.onosproject.segmentrouting.policy.api.PolicyId;
 import org.onosproject.segmentrouting.policy.api.TrafficMatch;
+import org.onosproject.segmentrouting.policy.api.TrafficMatchPriority;
 
 import java.io.InputStream;
 
@@ -54,8 +55,8 @@
                 .matchTcpDst(TpPort.tpPort(81))
                 .build();
         policyId = PolicyId.of("DROP");
-
-        trafficMatch = new TrafficMatch(trafficSelector, policyId);
+        TrafficMatchPriority trafficMatchPriority = new TrafficMatchPriority(60000);
+        trafficMatch = new TrafficMatch(trafficSelector, policyId, trafficMatchPriority);
     }
 
     @Test