Fix - run test_head_request_against_viewset method

This commit is contained in:
wnd-ft 2020-02-29 23:08:00 +09:00
parent 2a5c2f3f70
commit c8aedd79a8

View File

@ -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',