diff options
-rw-r--r-- | ryu/tests/switch/tester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.py index 4b12e291..8954b211 100644 --- a/ryu/tests/switch/tester.py +++ b/ryu/tests/switch/tester.py @@ -810,8 +810,8 @@ class OfTester(app_manager.RyuApp): value1 = sorted(value1) value2 = sorted(value2) elif attr == 'match': - value1 = __reasm_match(value1) - value2 = __reasm_match(value2) + value1 = sorted(__reasm_match(value1)) + value2 = sorted(__reasm_match(value2)) if str(value1) != str(value2): flow_stats = [] for attr in attr_list: |