delete unnecessary test

This commit is contained in:
Mohammadtaher Abbasi 2022-06-13 23:46:42 +04:30
parent a135d6caf0
commit 892c2a4655
1 changed files with 0 additions and 1 deletions

View File

@ -43,7 +43,6 @@ class HeadersTest(unittest.TestCase):
self.assertEqual(h["a"], b"c")
self.assertEqual(h.get("a"), b"c")
self.assertEqual(h.getlist("a"), [b"b", b"c"])
assert h.getlist("a") is not ["b", "c"]
def test_encode_utf8(self):
h = Headers({'key': '\xa3'}, encoding='utf-8')