mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Finalizes testing of the delete comment
This commit is contained in:
parent
6d5d308d6c
commit
67bb140eef
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user