Skip to content

Commit

Permalink
Fix update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Nov 11, 2024
1 parent 8267ad0 commit 221201b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ def test_site_selector(self):
"id": "utils.thirdpartymodel:1",
"text": "First",
"url": "/first",
"verbose_name": ThirdPartyModel._meta.verbose_name.capitalize(),
},
destinations["children"],
)
Expand All @@ -230,6 +231,7 @@ def test_site_selector(self):
"id": "utils.thirdpartymodel:2",
"text": "Second",
"url": "/second",
"verbose_name": ThirdPartyModel._meta.verbose_name.capitalize(),
},
destinations["children"],
)
Expand All @@ -239,6 +241,7 @@ def test_site_selector(self):
"id": "utils.thirdpartymodel:3",
"text": "django CMS",
"url": "/django-cms",
"verbose_name": ThirdPartyModel._meta.verbose_name.capitalize(),
},
destinations["children"],
)
Expand All @@ -247,6 +250,7 @@ def test_site_selector(self):
"id": "utils.thirdpartymodel:4",
"text": "django CMS rocks",
"url": "/django-cms-2",
"verbose_name": ThirdPartyModel._meta.verbose_name.capitalize(),
},
destinations["children"],
)
Expand Down

0 comments on commit 221201b

Please sign in to comment.