summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/responses/test_fileresponse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/responses/test_fileresponse.py b/tests/responses/test_fileresponse.py
index 85350cd9f1..4e10105ce5 100644
--- a/tests/responses/test_fileresponse.py
+++ b/tests/responses/test_fileresponse.py
@@ -188,8 +188,9 @@ class FileResponseTests(SimpleTestCase):
pipe_for_write.write(b'binary content')
response = FileResponse(os.fdopen(pipe_for_read, mode='rb'))
- self.assertEqual(list(response), [b'binary content'])
+ response_content = list(response)
response.close()
+ self.assertEqual(response_content, [b'binary content'])
self.assertFalse(response.has_header('Content-Length'))
def test_compressed_response(self):