diff options
author | Min ho Kim <minho42@gmail.com> | 2019-08-23 18:46:43 +1000 |
---|---|---|
committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2019-08-23 10:46:43 +0200 |
commit | 7bd963332017eace00be8caf7dc1b7b304da613a (patch) | |
tree | c6e31c2ef6af2b1868fdaa3004e4f0388514bc49 /tests/requests | |
parent | 521308e575e4510ef4256f2ba2943a5e570c9328 (diff) | |
download | django-7bd963332017eace00be8caf7dc1b7b304da613a.tar.gz |
Fixed typos in test names and a comment.
Diffstat (limited to 'tests/requests')
-rw-r--r-- | tests/requests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/requests/tests.py b/tests/requests/tests.py index 0c68105bb4..3320c59ba3 100644 --- a/tests/requests/tests.py +++ b/tests/requests/tests.py @@ -458,7 +458,7 @@ class RequestsTests(SimpleTestCase): self.assertEqual(request.read(13), b'--boundary\r\nC') self.assertEqual(request.POST, {'name': ['value']}) - def test_POST_immutable_for_mutipart(self): + def test_POST_immutable_for_multipart(self): """ MultiPartParser.parse() leaves request.POST immutable. """ |