1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed typo in error message in the test.

This commit is contained in:
Tim Graham 2015-02-19 19:36:20 -05:00
parent e467919c63
commit c8074d62f8

View File

@ -21,7 +21,7 @@ class WSGIRequestHandlerTestCase(TestCase):
with captured_stderr() as stderr: with captured_stderr() as stderr:
handler.log_message("GET %s %s", str('\x16\x03'), "4") handler.log_message("GET %s %s", str('\x16\x03'), "4")
self.assertIn( self.assertIn(
"You're accessing the developement server over HTTPS, " "You're accessing the development server over HTTPS, "
"but it only supports HTTP.", "but it only supports HTTP.",
stderr.getvalue() stderr.getvalue()
) )