update uses of renamed pyloxi constants
diff --git a/src/python/oftest/testutils.py b/src/python/oftest/testutils.py
index 8a5a563..6892b39 100644
--- a/src/python/oftest/testutils.py
+++ b/src/python/oftest/testutils.py
@@ -1313,12 +1313,8 @@
     """
     Retrieve a list of stats entries. Handles OFPSF_REPLY_MORE.
     """
-    if ofp.OFP_VERSION <= 3:
-        msgtype = ofp.OFPT_STATS_REPLY
-        more_flag = ofp.OFPSF_REPLY_MORE
-    else:
-        msgtype = ofp.OFPT_MULTIPART_REPLY
-        more_flag = ofp.OFPMPF_REPLY_MORE
+    msgtype = ofp.OFPT_STATS_REPLY
+    more_flag = ofp.OFPSF_REPLY_MORE
     stats = []
     reply, _ = test.controller.transact(req)
     test.assertTrue(reply is not None, "No response to stats request")