1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed typos in test comments.

This commit is contained in:
Tim Gates
2019-06-25 19:12:45 +10:00
committed by Mariusz Felisiak
parent 325d5d6445
commit 698df6a009
2 changed files with 3 additions and 3 deletions

View File

@@ -628,7 +628,7 @@ class ExceptionReporterTests(SimpleTestCase):
'items (application/octet-stream)&gt;</pre></td>',
html
)
# COOKES
# COOKIES
rf = RequestFactory()
rf.cookies['items'] = 'Oops'
request = rf.get('/test_view/')
@@ -773,7 +773,7 @@ class PlainTextReportTests(SimpleTestCase):
reporter = ExceptionReporter(request, None, None, None)
text = reporter.get_traceback_text()
self.assertIn('items = <InMemoryUploadedFile:', text)
# COOKES
# COOKIES
rf = RequestFactory()
rf.cookies['items'] = 'Oops'
request = rf.get('/test_view/')