Signed-off-by: YAMAMOTO Takashi <[email protected]>
---
 ryu/tests/unit/ofproto/test_parser_v12.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ryu/tests/unit/ofproto/test_parser_v12.py 
b/ryu/tests/unit/ofproto/test_parser_v12.py
index 4b48f3d..c3d0ca7 100644
--- a/ryu/tests/unit/ofproto/test_parser_v12.py
+++ b/ryu/tests/unit/ofproto/test_parser_v12.py
@@ -6167,7 +6167,7 @@ class TestOFPQueuePropHeader(unittest.TestCase):
 
     def test_init(self):
         c = OFPQueuePropHeader(self.property_, self.len_)
-        eq_(self.property_, c._property)
+        eq_(self.property_, c.property)
         eq_(self.len_, c.len)
 
     def _test_serialize(self, property_, len_):
@@ -6234,7 +6234,7 @@ class TestOFPPacketQueue(unittest.TestCase):
         eq_(prop_cnt, len(res.properties))
 
         for rate, p in enumerate(res.properties):
-            eq_(prop_type, p._property)
+            eq_(prop_type, p.property)
             eq_(prop_len, p.len)
             eq_(rate, p.rate)
 
@@ -6373,7 +6373,7 @@ class TestOFPQueueGetConfigReply(unittest.TestCase):
             eq_(1, len(val.properties))
 
             prop = val.properties[0]
-            eq_(c['prop_type'], prop._property)
+            eq_(c['prop_type'], prop.property)
             eq_(c['prop_len'], prop.len)
             eq_(c['prop_rate'], prop.rate)
 
-- 
1.8.3.1


------------------------------------------------------------------------------
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to