diff --git a/hello/tests.py b/hello/tests.py index 7ad24a8..16625d1 100644 --- a/hello/tests.py +++ b/hello/tests.py @@ -7,7 +7,7 @@ class HomeViewTest(TestCase): def test_home(self): - requst = http.HttpRequest() + request = http.HttpRequest() response = views.home(request) self.assertEqual(200, response.status_code) self.assertIn('Hello World!', response.content)