feat: remove default favicon
Docker CI / docker-build (push) Has been cancelled
Python Lint CI / ruff-format-check (push) Has been cancelled
Python Lint CI / ty (push) Has been cancelled
Python Lint CI / ruff (push) Has been cancelled
Python Test CI / coverage (push) Has been cancelled

This commit is contained in:
2026-07-17 16:03:18 +02:00
parent 5b4cba44d0
commit 118daf1e8c
4 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -1227,12 +1227,12 @@ class TestRequestHandler(BaseHandlerTestCase):
with (
self.patch_call(
"http.server.SimpleHTTPRequestHandler.translate_path",
["/favicon.ico"],
["/robots.txt"],
),
self.seal_mocks(),
):
self.assertEqual(
handler.translate_path("/favicon.ico"),
handler.translate_path("/robots.txt"),
None,
)
@@ -1269,12 +1269,12 @@ class TestRequestHandler(BaseHandlerTestCase):
self.mock_call(self.registry.get_from_host, ["example.com"], Page("path")),
self.patch_call(
"http.server.SimpleHTTPRequestHandler.translate_path",
["/favicon.ico"],
["/robots.txt"],
),
self.seal_mocks(),
):
self.assertEqual(
handler.translate_path("/favicon.ico"),
handler.translate_path("/robots.txt"),
None,
)