diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2013-09-02 15:06:03 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-09-02 19:41:37 +0900 |
commit | ccad3f86c0c4132ca7e89ca5667b482f23e44d5e (patch) | |
tree | 370f2cd79e8511e4504efb023b15d3e0918e6a49 | |
parent | 4110b404deaf862d04ae41b1d7cea9b098cd43c6 (diff) |
test_parser_v12: update after OFPPacketOut.actions_len changes
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-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) |