summaryrefslogtreecommitdiff
path: root/tests/admin_views
diff options
context:
space:
mode:
authorTom Carrick <tom@carrick.eu>2022-08-16 15:44:10 +0200
committerCarlton Gibson <carlton@noumenal.es>2022-08-17 10:19:00 +0200
commitd46cc15c51219c3418e0287bf018c5ba1346f825 (patch)
treecaa2e59a22f37de53bd98a5033977e74330aaa40 /tests/admin_views
parent43ddce0aeb37290861694311d02b9661c40c019f (diff)
downloaddjango-d46cc15c51219c3418e0287bf018c5ba1346f825.tar.gz
Fixed #33878 -- Switched to system fonts in CSS.
Diffstat (limited to 'tests/admin_views')
-rw-r--r--tests/admin_views/tests.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index 3037ec1c3b..b2bc04b939 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -6166,7 +6166,20 @@ class SeleniumTests(AdminSeleniumTestCase):
]
self.assertEqual(
fonts,
- ["Roboto", "Lucida Grande", "Verdana", "Arial", "sans-serif"],
+ [
+ "-apple-system",
+ "BlinkMacSystemFont",
+ "Segoe UI",
+ "system-ui",
+ "Roboto",
+ "Helvetica Neue",
+ "Arial",
+ "sans-serif",
+ "Apple Color Emoji",
+ "Segoe UI Emoji",
+ "Segoe UI Symbol",
+ "Noto Color Emoji",
+ ],
)
def test_search_input_filtered_page(self):