loxi-prep: rename users of ofp_match
diff --git a/tests/flow_query.py b/tests/flow_query.py
index 49b1a9b..e7f1718 100644
--- a/tests/flow_query.py
+++ b/tests/flow_query.py
@@ -336,7 +336,7 @@
def __init__(self):
self.priority = 0
- self.match = ofp.ofp_match()
+ self.match = ofp.match()
self.match.wildcards = ofp.OFPFW_ALL
self.idle_timeout = 0
self.hard_timeout = 0
@@ -1319,7 +1319,7 @@
def flow_stats_get(self, limit = 10000):
request = ofp.message.flow_stats_request()
- query_match = ofp.ofp_match()
+ query_match = ofp.match()
query_match.wildcards = ofp.OFPFW_ALL
request.match = query_match
request.table_id = 0xff