From ba239e12ebf10f19656ad1a9aa8ece1f4ac3817f Mon Sep 17 00:00:00 2001 From: Sage Abdullah Date: Tue, 18 Apr 2023 15:51:29 +0700 Subject: [PATCH] Update default FieldPanel icon test to use the placeholder icon instead of arrow-down-big --- wagtail/admin/tests/test_edit_handlers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wagtail/admin/tests/test_edit_handlers.py b/wagtail/admin/tests/test_edit_handlers.py index 04a2c5ea04..1a1c464ecf 100644 --- a/wagtail/admin/tests/test_edit_handlers.py +++ b/wagtail/admin/tests/test_edit_handlers.py @@ -1785,7 +1785,7 @@ class TestPanelIcons(WagtailTestUtils, TestCase): # Django model field with default icon (FieldPanel("signup_link"), "link-external", "link-external", 1), # Django model field with no default icon - (FieldPanel("audience"), None, "arrow-down-big", 1), + (FieldPanel("audience"), None, "placeholder", 1), # Wagtail model field with default icon (FieldPanel("body"), "pilcrow", "pilcrow", 1), # Django ForeignKey with icon taken from the widget override @@ -1812,7 +1812,7 @@ class TestPanelIcons(WagtailTestUtils, TestCase): # Django model field with default icon (FieldPanel("signup_link", icon="cog"), "cog", "link-external", 0), # Django model field with no default icon - (FieldPanel("audience", icon="check"), "check", "arrow-down-big", 0), + (FieldPanel("audience", icon="check"), "check", "placeholder", 0), # Wagtail model field with default icon (FieldPanel("body", icon="cut"), "cut", "pilcrow", 0), # Django ForeignKey with icon taken from the widget override