We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65244e3 commit 869be1aCopy full SHA for 869be1a
tests/test_web.py
@@ -325,7 +325,7 @@ def test_create_user_comment(self) -> None:
325
'related_vulnerabilities': ['CVE-2024-20402']}
326
created_comment = self.client.create_comment(comment=comment)
327
new_comment_uuid = created_comment['data'][0]['uuid']
328
- comments = self.client.get_comments(uuid=new_comment_uuid)
+ comments = self.client.get_comment(new_comment_uuid)
329
self.assertTrue(len(comments['data']) == 1, comments)
330
deleted_comment = self.client.delete_comment(new_comment_uuid)
331
self.assertTrue(deleted_comment < 300)
0 commit comments