loxi-prep: move header fields into the message classes
diff --git a/tests/actions.py b/tests/actions.py
index 68b2e1b..6bb6a8a 100644
--- a/tests/actions.py
+++ b/tests/actions.py
@@ -88,7 +88,7 @@
         request = ofp.message.features_request()
         (reply, pkt) = self.controller.transact(request)
         self.assertTrue(reply is not None, "Failed to get any reply")
-        self.assertEqual(reply.header.type, ofp.OFPT_FEATURES_REPLY,'Response is not Features_reply')
+        self.assertEqual(reply.type, ofp.OFPT_FEATURES_REPLY,'Response is not Features_reply')
         
         supported_actions =[]
         if(reply.actions &1<<ofp.OFPAT_OUTPUT):