diff options
-rw-r--r-- | ryu/tests/unit/ofproto/test_parser_v12.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/tests/unit/ofproto/test_parser_v12.py b/ryu/tests/unit/ofproto/test_parser_v12.py index e3f0bda4..5ed0d7ea 100644 --- a/ryu/tests/unit/ofproto/test_parser_v12.py +++ b/ryu/tests/unit/ofproto/test_parser_v12.py @@ -2459,7 +2459,7 @@ class TestOFPPacketOut(unittest.TestCase): eq_(buffer_id, c.buffer_id) eq_(in_port, c.in_port) - eq_(0, c._actions_len) + eq_(0, c.actions_len) eq_(data, c.data) eq_(actions, c.actions) |