From 75252dc2365519c3d6b77cfc8e967ef2b2d8fdcb Mon Sep 17 00:00:00 2001 From: Tissevert Date: Sat, 17 Apr 2021 17:19:17 +0200 Subject: [PATCH] Fix typo in favicon's extension --- test/XML/Favicon.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/XML/Favicon.hs b/test/XML/Favicon.hs index 5575d3e..4d1f4d8 100644 --- a/test/XML/Favicon.hs +++ b/test/XML/Favicon.hs @@ -20,6 +20,6 @@ test = tag "favicon" . testGroup "Favicons" $ simpleTest <$> [ ("auto-discover", check (findImage "favicon" Nothing) (Just localDiscovered)) , ("none", check (findImage "blerp" Nothing) Nothing) , ("manual absolute", check (findImage "" (Just "https://cdn.net/favicon.png")) (Just cdnFavicon)) - , ("manual relative", check (findImage "" (Just "favicon.ico")) (Just localFavicon)) - , ("manual host-relative", check (findImage "" (Just "/favicon.ico")) (Just localFavicon)) + , ("manual relative", check (findImage "" (Just "favicon.png")) (Just localFavicon)) + , ("manual host-relative", check (findImage "" (Just "/favicon.png")) (Just localFavicon)) ]