Remove unneeded util function.
diff --git a/tests-1.3/match.py b/tests-1.3/match.py
index b0a5167..68436d3 100644
--- a/tests-1.3/match.py
+++ b/tests-1.3/match.py
@@ -35,7 +35,7 @@
         packet data.
         """
         in_port, out_port = openflow_ports(2)
-        table_id = test_param_get_table()
+        table_id = test_param_get("table", 0)
 
         logging.info("Running match test for %s", match.show())
 
@@ -89,7 +89,7 @@
     """
     def runTest(self):
         in_port, out_port, bad_port = openflow_ports(3)
-        table_id = test_param_get_table()
+        table_id = test_param_get("table", 0)
 
         match = ofp.match([
             ofp.oxm.in_port(in_port)