From 78e1fb00bdef45778a1f3f7f638c6cdfc2fe2b16 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Mon, 5 Feb 2024 01:51:05 +0000 Subject: [PATCH] chore: Formatting to test pre-commit --- tests/test_toolbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_toolbar.py b/tests/test_toolbar.py index f91bfbb..b0b1fdb 100644 --- a/tests/test_toolbar.py +++ b/tests/test_toolbar.py @@ -449,7 +449,7 @@ def test_site_dropdown_url_renders_admin_changelist_url(self): admin_menu = request.toolbar.get_or_create_menu(ADMIN_MENU_IDENTIFIER) site_aliases_url = admin_menu.items[3].url admin_changelist_aliases_url = ( - reverse("admin:{}_alias_changelist".format(AliasContent._meta.app_label)) + reverse(f"admin:{AliasContent._meta.app_label}_alias_changelist") + "?language=en" )