Added modify VID and send to ingress test
diff --git a/tests/pktact.py b/tests/pktact.py
index 023e1ca..14f9e8f 100644
--- a/tests/pktact.py
+++ b/tests/pktact.py
@@ -1346,6 +1346,10 @@
     """
     Modify the VLAN ID in the VLAN tag of a tagged packet
     """
+    def setUp(self):
+        BaseMatchCase.setUp(self)
+        self.ing_port=False
+
     def runTest(self):
         old_vid = 2
         new_vid = 3
@@ -1360,7 +1364,16 @@
         vid_act.vlan_vid = new_vid
 
         flow_match_test(self, pa_port_map, pkt=pkt, exp_pkt=exp_pkt,
-                        action_list=[vid_act])
+                        action_list=[vid_act], ing_port=self.ing_port)
+
+class ModifyVIDToIngress(ModifyVID):
+    """
+    Modify the VLAN ID in the VLAN tag of a tagged packet and send to
+    ingress port
+    """
+    def setUp(self):
+        BaseMatchCase.setUp(self)
+        self.ing_port=True
 
 class ModifyVIDWithTagMatchWildcarded(BaseMatchCase):
     """