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 38916e1..afdfea3 100644
--- a/ryu/tests/unit/ofproto/test_parser_v12.py
+++ b/ryu/tests/unit/ofproto/test_parser_v12.py
@@ -6168,7 +6168,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_):
@@ -6235,7 +6235,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)
 
@@ -6374,7 +6374,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


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to