Skip to content

Commit d688973

Browse files
committed
Tests: fix a broken test
1 parent 3b84dfd commit d688973

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django/tests/core/test_admin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def test_topics_filter(self, admin_client: Client) -> None:
3636
assertContains(response, procedure_with_topic.pk)
3737

3838
def test_collectivite_porteuse_type_filter(self, admin_client: Client) -> None:
39-
polem = create_groupement(type=TypeCollectivite.POLEM)
40-
cc = create_groupement(type=TypeCollectivite.CC)
39+
polem = create_groupement(groupement_type=TypeCollectivite.POLEM)
40+
cc = create_groupement(groupement_type=TypeCollectivite.CC)
4141
procedure_polem = create_procedure(collectivite_porteuse=polem)
4242
procedure_cc = create_procedure(collectivite_porteuse=cc)
4343

0 commit comments

Comments
 (0)