From b8a297baab501f5818a8041ca6dac15b1d29dafd Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sat, 18 Jul 2015 10:47:23 -0500 Subject: [PATCH] Remove broken CaseInsensitiveDict repr test Fixes #2668 --- test_requests.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test_requests.py b/test_requests.py index 5f4f472a..a5d63464 100755 --- a/test_requests.py +++ b/test_requests.py @@ -1272,13 +1272,6 @@ class TestCaseInsensitiveDict(unittest.TestCase): cid['changed'] = True assert cid != cid_copy - def test_repr(self): - cid = CaseInsensitiveDict({ - 'Accept': 'application/json', - 'user-Agent': 'requests', - }) - assert repr(cid) == "{'Accept': 'application/json', 'user-Agent': 'requests'}" - class UtilsTestCase(unittest.TestCase):