diff --git a/tests/test_viewsets.py b/tests/test_viewsets.py index eac36f095..479d44159 100644 --- a/tests/test_viewsets.py +++ b/tests/test_viewsets.py @@ -103,7 +103,7 @@ class InitializeViewSetsTestCase(TestCase): assert response.status_code == status.HTTP_200_OK assert response.data == {'ACTION': 'LIST'} - def testhead_request_against_viewset(self): + def test_head_request_against_viewset(self): request = factory.head('/', '', content_type='application/json') my_view = BasicViewSet.as_view(actions={ 'get': 'list',