1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Refs #27184 -- Fixed unclosed file ResourceWarning in test_client test.

This commit is contained in:
Jon Dufresne 2016-12-12 09:41:38 -08:00 committed by Tim Graham
parent 7a4e2fc5a2
commit 8db6a6c0a1

View File

@ -717,8 +717,8 @@ class ClientTest(TestCase):
self.client.get('/nesting_exception_view/')
def test_uploading_temp_file(self):
test_file = tempfile.TemporaryFile()
response = self.client.post('/upload_view/', data={'temp_file': test_file})
with tempfile.TemporaryFile() as test_file:
response = self.client.post('/upload_view/', data={'temp_file': test_file})
self.assertEqual(response.content, b'temp_file')
def test_uploading_named_temp_file(self):