Imgur webp coverage

update regex to catch _d in webp links from imgur.
This commit is contained in:
Soulsuck24
2022-12-11 14:20:04 -05:00
parent 1bc20f238e
commit 15a9d25a9d
2 changed files with 5 additions and 1 deletions

View File

@@ -170,6 +170,10 @@ def test_imgur_extension_validation_bad(test_extension: str):
"http://i.imgur.com/s9uXxlq.jpg?5.jpg",
("338de3c23ee21af056b3a7c154e2478f",),
),
(
"https://i.imgur.com/2TtN68l_d.webp",
("6569ab9ad9fa68d93f6b408f112dd741",),
),
),
)
def test_find_resources(test_url: str, expected_hashes: list[str]):