dl_vlan_pcp is only a 3 bit field, 10 does not fit
diff --git a/tests/FuncUtils.py b/tests/FuncUtils.py
index 45c12fb..95675ed 100644
--- a/tests/FuncUtils.py
+++ b/tests/FuncUtils.py
@@ -285,7 +285,7 @@
     #Generate Match_Vlan_Id
 
     #Create a simple tcp packet and generate match on ethernet dst address flow
-    pkt_matchvlanpcp = simple_tcp_packet(dl_vlan_enable=True,dl_vlan=1,dl_vlan_pcp=10)
+    pkt_matchvlanpcp = simple_tcp_packet(dl_vlan_enable=True,dl_vlan=1,dl_vlan_pcp=5)
     match = parse.packet_to_flow_match(pkt_matchvlanpcp)
     self.assertTrue(match is not None, "Could not generate flow match from pkt")