loxi-prep: remove action_ prefix from callers
diff --git a/tests/flow_stats.py b/tests/flow_stats.py
index abd405c..eec92a6 100644
--- a/tests/flow_stats.py
+++ b/tests/flow_stats.py
@@ -125,7 +125,7 @@
         match.wildcards &= ~ofp.OFPFW_IN_PORT
         self.assertTrue(match is not None, 
                         "Could not generate flow match from pkt")
-        act = ofp.action.action_output()
+        act = ofp.action.output()
 
         # build flow
         ingress_port = of_ports[0];
@@ -191,7 +191,7 @@
         flow_mod_msg.buffer_id = 0xffffffff
         flow_mod_msg.idle_timeout = 0
         flow_mod_msg.hard_timeout = 0
-        act = ofp.action.action_output()
+        act = ofp.action.output()
         act.port = egress_port
         flow_mod_msg.actions.add(act)
 
@@ -316,7 +316,7 @@
         flow_mod_msg.buffer_id = 0xffffffff
         flow_mod_msg.idle_timeout = 0
         flow_mod_msg.hard_timeout = 0
-        act = ofp.action.action_output()
+        act = ofp.action.output()
         act.port = egress_port
         flow_mod_msg.actions.add(act)
 
@@ -474,7 +474,7 @@
         match.wildcards &= ~ofp.OFPFW_IN_PORT
         self.assertTrue(match is not None,
                         "Could not generate flow match from pkt")
-        act = ofp.action.action_output()
+        act = ofp.action.output()
 
         # build flow
         ingress_port = of_ports[0];