Finalizes testing of the delete comment

This commit is contained in:
Trenton Holmes 2022-08-24 08:27:43 -07:00 committed by Michael Shamoon
parent 6d5d308d6c
commit 67bb140eef

View File

@ -1459,13 +1459,14 @@ class TestDocumentApi(DirectoriesMixin, APITestCase):
)
response = self.client.delete(
f"/api/documents/{doc.pk}/comments/",
data={"id": f"{comment.pk}"},
f"/api/documents/{doc.pk}/comments/?id={comment.pk}",
format="json",
)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(Comment.objects.all()), 0)
def test_get_comments_no_doc(self):
"""
GIVEN: