diff --git a/tenant_groups/tests/test_admin.py b/tenant_groups/tests/test_admin.py index 9e9b1b0..e5dcc68 100644 --- a/tenant_groups/tests/test_admin.py +++ b/tenant_groups/tests/test_admin.py @@ -145,14 +145,14 @@ def test_new_group_shows_only_filtered_permissions(self): response = self.client.get(reverse("admin:tenant_groups_group_add")) for permission in ( - "attachments | attachment | Can change attachment", - "bugs | bug | Can add bug", - "django_comments | comment | Can delete comment", - "linkreference | link reference | Can view link reference", - "management | product | Can view product", - "testcases | category | Can add category", - "testplans | test plan | Can delete test plan", - "testruns | test execution | Can delete test execution", + "Attachments | attachment | Can change attachment", + "Bugs | bug | Can add bug", + "Django_Comments | comment | Can delete comment", + "Linkreference | link reference | Can view link reference", + "Management | product | Can view product", + "Testcases | category | Can add category", + "Testplans | test plan | Can delete test plan", + "Testruns | test execution | Can delete test execution", ): self.assertContains(response, permission) @@ -176,14 +176,14 @@ def test_change_group_shows_only_filtered_permissions(self): ) for permission in ( - "attachments | attachment | Can change attachment", - "bugs | bug | Can add bug", - "django_comments | comment | Can delete comment", - "linkreference | link reference | Can view link reference", - "management | product | Can view product", - "testcases | category | Can add category", - "testplans | test plan | Can delete test plan", - "testruns | test execution | Can delete test execution", + "Attachments | attachment | Can change attachment", + "Bugs | bug | Can add bug", + "Django_Comments | comment | Can delete comment", + "Linkreference | link reference | Can view link reference", + "Management | product | Can view product", + "Testcases | category | Can add category", + "Testplans | test plan | Can delete test plan", + "Testruns | test execution | Can delete test execution", ): self.assertContains(response, permission)