From 9c1a956e4785f9e55f892279924c8cf3048c36b2 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 6 Aug 2014 20:34:51 +0900 Subject: [PATCH] hpackcheck.py: Remove sorting to check ordering requirements --- python/hpackcheck.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/hpackcheck.py b/python/hpackcheck.py index f1b08907..88cb350e 100755 --- a/python/hpackcheck.py +++ b/python/hpackcheck.py @@ -27,8 +27,6 @@ def testsuite(testdata): expected_hdrs = [(list(x.keys())[0], list(x.values())[0]) for x in item['headers']] - hdrs.sort() - expected_hdrs.sort() if hdrs != expected_hdrs: if 'seqno' in item: seqno = item['seqno']