mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Refs #26022 -- Used context manager version of assertRaises in tests.
This commit is contained in:
parent
575706331b
commit
3d0dcd7f5a
118 changed files with 1086 additions and 760 deletions
|
@ -376,12 +376,8 @@ class FileUploadTests(TestCase):
|
|||
file.seek(0)
|
||||
|
||||
# AttributeError: You cannot alter upload handlers after the upload has been processed.
|
||||
self.assertRaises(
|
||||
AttributeError,
|
||||
self.client.post,
|
||||
'/quota/broken/',
|
||||
{'f': file}
|
||||
)
|
||||
with self.assertRaises(AttributeError):
|
||||
self.client.post('/quota/broken/', {'f': file})
|
||||
|
||||
def test_fileupload_getlist(self):
|
||||
file = tempfile.NamedTemporaryFile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue