diff options
Diffstat (limited to 'tests/file_uploads')
| -rw-r--r-- | tests/file_uploads/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/file_uploads/tests.py b/tests/file_uploads/tests.py index 35adb7c1ab..0e574cbc56 100644 --- a/tests/file_uploads/tests.py +++ b/tests/file_uploads/tests.py @@ -162,9 +162,9 @@ class FileUploadTests(TestCase): response = self.client.request(**r) # The filenames should have been sanitized by the time it got to the view. - recieved = json.loads(response.content.decode('utf-8')) + received = json.loads(response.content.decode('utf-8')) for i, name in enumerate(scary_file_names): - got = recieved["file%s" % i] + got = received["file%s" % i] self.assertEqual(got, "hax0rd.txt") def test_filename_overflow(self): |
