Skip to content

Commit

Permalink
fix: check title from new comment, take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Dec 9, 2024
1 parent 100bae2 commit 6ffcbc3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ def test_create_user_comment(self) -> None:
created_comment = self.client.create_comment(comment=comment)
new_comment_uuid = created_comment['data'][0]['uuid']
comment = self.client.get_comment(new_comment_uuid)
self.assertTrue(comment.get('title'), comment)
self.assertEqual(comment['title'], 'test', comment)
deleted_comment = self.client.delete_comment(new_comment_uuid)
self.assertTrue(deleted_comment < 300)
Expand Down

0 comments on commit 6ffcbc3

Please sign in to comment.