Skip to content

Commit

Permalink
OM-243: fixed typo in assert
Browse files Browse the repository at this point in the history
  • Loading branch information
sniedzielski committed Aug 20, 2024
1 parent d1f353a commit 4de3251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker_voucher/tests/test_create_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ def test_create_worker_success(self):
workers = Insuree.objects.filter(chf_id=self.chf_id)
phi = PolicyHolderInsuree.objects.filter(policy_holder=self.policyholder)
self.assertEquals(workers.count(), 1)
self.assertEquls(phi.count(), 1)
self.assertEquals(phi.count(), 1)

0 comments on commit 4de3251

Please sign in to comment.