Skip to content

Commit

Permalink
Get back assertNoFormErrors
Browse files Browse the repository at this point in the history
  • Loading branch information
DjangoCRM authored Sep 5, 2024
1 parent 13f1a07 commit 6a070d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/crm/test_deal.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def test_unreceived_payments_deletion_of_deactivated_deal(self):
data['closing_reason'] = str(closing_reason.id)
data['_save'] = ''
response = self.client.post(self.deal_change_url, data, follow=True)
# self.assertNoFormErrors(response)
self.assertNoFormErrors(response)
self.assertEqual(response.status_code, 200, response.reason_phrase)
self.assertTrue(Payment.objects.filter(
deal=self.deal,
Expand Down

0 comments on commit 6a070d1

Please sign in to comment.