summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/httpwrappers/tests.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index 803cbf029f..bfb4ae1fd5 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -330,13 +330,6 @@ class HttpResponseTests(unittest.TestCase):
self.assertRaises(UnicodeEncodeError,
getattr, r, 'content')
- def test_iterator_isnt_rewound(self):
- # Regression test for #13222
- r = HttpResponse('abc')
- i = iter(r)
- self.assertEqual(list(i), [b'abc'])
- self.assertEqual(list(i), [])
-
def test_file_interface(self):
r = HttpResponse()
r.write(b"hello")