mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-24 23:19:47 +03:00
Removed commented code that uses the request factory and reworded the
comment that explains why it isn't used
This commit is contained in:
parent
b95f505c74
commit
96c2a28786
|
@ -254,8 +254,6 @@ class TestOptionalRelationHyperlinkedView(TestCase):
|
||||||
PUT requests to RetrieveUpdateDestroyAPIView with optional relations
|
PUT requests to RetrieveUpdateDestroyAPIView with optional relations
|
||||||
should accept None for non existing relations.
|
should accept None for non existing relations.
|
||||||
"""
|
"""
|
||||||
# Using the factory, the None somehow becomes u'None', which is not what happens in reality...
|
# Using the factory, the None incorrectly becomes u'None'. Use the normal test client instead
|
||||||
#request = factory.put('/optionalrelationmodel-detail/1', data=json.dumps(self.data))
|
|
||||||
#response = self.detail_view(request, pk=1).render()
|
|
||||||
response = self.client.put('/optionalrelation/1/', data=json.dumps(self.data), content_type='application/json')
|
response = self.client.put('/optionalrelation/1/', data=json.dumps(self.data), content_type='application/json')
|
||||||
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user