Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed May 13, 2024
1 parent 013bd68 commit 8cc449b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lemarche/www/dashboard_siaes/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ def setUpTestData(cls):
cls.user_buyer = UserFactory(kind=User.KIND_BUYER)
cls.user_partner = UserFactory(kind=User.KIND_PARTNER)
cls.user_admin = UserFactory(kind=User.KIND_ADMIN)
cls.siae_with_user = SiaeFactory()
cls.siae_with_user = SiaeFactory(brevo_company_id="123abc1")
cls.siae_with_user.users.add(cls.user_siae)
cls.siae_without_user = SiaeFactory()
cls.siae_without_user = SiaeFactory(brevo_company_id="123abc2")
TemplateTransactional.objects.create(code="SIAEUSERREQUEST_ASSIGNEE")

def test_anonymous_user_cannot_adopt_siae(self):
Expand Down

0 comments on commit 8cc449b

Please sign in to comment.