Skip to content

Commit

Permalink
OP-2220: fixed assert in commenter type to use 'contain'
Browse files Browse the repository at this point in the history
  • Loading branch information
sniedzielski committed Dec 13, 2024
1 parent 4fb03f9 commit d2863b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_create_comment_individual_success(self):
self.assertEquals(comment.comment, self.comment)
self.assertEquals(comment.commenter_id, str(self.individual.id))
self.assertEquals(comment.is_resolution, False)
self.assertEquals(str(comment.commenter_type), self.type)
self.assertIn(self.type, str(comment.commenter_type))

def test_create_comment_anonymous_user_success(self):
mutation_id = "99g453h5g92h04ww98"
Expand Down

0 comments on commit d2863b3

Please sign in to comment.