Fix typo in favicon's extension

This commit is contained in:
Tissevert 2021-04-17 17:19:17 +02:00
parent 8e5d6e3c1c
commit 75252dc236
1 changed files with 2 additions and 2 deletions

View File

@ -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))
]