diff options
author | KONDOH Tasuku <kondoh.tasuku@po.ntts.co.jp> | 2013-03-01 14:06:33 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-03-01 16:02:52 +0900 |
commit | 5e291101264f6495ced18c2c3b7f9e1e1912eafb (patch) | |
tree | 2538dc93916d9d5990b7b6397da55481305d6d6c | |
parent | 72a061f19b21dcfa563b14259e78c1633e3c571c (diff) |
test of1.2: fix typos from mid to min
Signed-off-by: KONDOH Tasuku <kondoh.tasuku@po.ntts.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/tests/unit/ofproto/test_parser_v12.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ryu/tests/unit/ofproto/test_parser_v12.py b/ryu/tests/unit/ofproto/test_parser_v12.py index 3e53d9fe..733fdfef 100644 --- a/ryu/tests/unit/ofproto/test_parser_v12.py +++ b/ryu/tests/unit/ofproto/test_parser_v12.py @@ -3511,7 +3511,7 @@ class TestOFPActionPushVlan(unittest.TestCase): def test_parser_max(self): self._test_parser(0xffff) - def test_parser_mid(self): + def test_parser_min(self): self._test_parser(0) def _test_serialize(self, ethertype): @@ -3530,7 +3530,7 @@ class TestOFPActionPushVlan(unittest.TestCase): def test_serialize_max(self): self._test_serialize(0xffff) - def test_serialize_mid(self): + def test_serialize_min(self): self._test_serialize(0) @@ -3563,7 +3563,7 @@ class TestOFPActionPushMpls(unittest.TestCase): def test_parser_max(self): self._test_parser(0xffff) - def test_parser_mid(self): + def test_parser_min(self): self._test_parser(0) def _test_serialize(self, ethertype): @@ -3582,7 +3582,7 @@ class TestOFPActionPushMpls(unittest.TestCase): def test_serialize_max(self): self._test_serialize(0xffff) - def test_serialize_mid(self): + def test_serialize_min(self): self._test_serialize(0) @@ -3641,7 +3641,7 @@ class TestOFPActionPopMpls(unittest.TestCase): def test_parser_max(self): self._test_parser(0xffff) - def test_parser_mid(self): + def test_parser_min(self): self._test_parser(0) def _test_serialize(self, ethertype): @@ -3660,7 +3660,7 @@ class TestOFPActionPopMpls(unittest.TestCase): def test_serialize_max(self): self._test_serialize(0xffff) - def test_serialize_mid(self): + def test_serialize_min(self): self._test_serialize(0) @@ -7486,7 +7486,7 @@ class TestOFPMatch(unittest.TestCase): def test_set_mpls_label_max(self): self._test_set_mpls_label(0xfffff) - def test_set_mpls_label_mid(self): + def test_set_mpls_label_min(self): self._test_set_mpls_label(0) # set_mpls_tc |