of12: remove redundant action_ prefix from action classes
diff --git a/tests-1.2/basic.py b/tests-1.2/basic.py
index 2321da8..76a5a16 100644
--- a/tests-1.2/basic.py
+++ b/tests-1.2/basic.py
@@ -108,7 +108,7 @@
             msg = ofp.message.packet_out()
             msg.in_port = ofp.OFPP_CONTROLLER
             msg.data = str(outpkt)
-            act = ofp.action.action_output()
+            act = ofp.action.output()
             act.port = dp_port
             self.assertTrue(msg.actions.add(act), 'Could not add action to msg')