8000 fix: Grouper models must not assume language grouper by fsbraun · Pull Request #8194 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Grouper models must not assume language grouper #8194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 31, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update cms/tests/test_grouper_admin.py
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
  • Loading branch information
fsbraun and sourcery-ai[bot] authored Mar 31, 2025
commit baa7b8db729e807f38ad4949a380dd0ca5486a23
2 changes: 1 addition & 1 deletion cms/tests/test_grouper_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_action_js_css(self):
The js and css files are supposed to be arranged by the GrouperAdminMixin."""
with self.login_user_context(self.admin_user):
# Act
response = self.client.get(self.changelist_url + "?", follow=True)
response = self.client.get(f"{self.changelist_url}?", follow=True)
# Assert
self.assertContains(response, static("admin/js/jquery.init.js"))
self.assertContains(response, static("cms/js/admin/actions.js"))
Expand Down
Loading
0