diff options
-rw-r--r-- | ryu/tests/unit/ofproto/test_parser.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ryu/tests/unit/ofproto/test_parser.py b/ryu/tests/unit/ofproto/test_parser.py index 6ad64c03..94938e87 100644 --- a/ryu/tests/unit/ofproto/test_parser.py +++ b/ryu/tests/unit/ofproto/test_parser.py @@ -179,6 +179,9 @@ class Test_Parser(unittest.TestCase): msg3.serialize() eq_(wire_msg, msg3.buf) + msg2.serialize() + eq_(wire_msg, msg2.buf) + def _add_tests(): import os |