From 61b0bd2d479838976dbfd05936f3ba9e85eef11a Mon Sep 17 00:00:00 2001 From: Mobina Date: Fri, 11 Sep 2026 00:55:10 +0330 Subject: [PATCH] minor improvement --- tests/test_ai_coding_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ai_coding_content.py b/tests/test_ai_coding_content.py index 05ad365..c58532d 100644 --- a/tests/test_ai_coding_content.py +++ b/tests/test_ai_coding_content.py @@ -46,7 +46,7 @@ def test_guide_reference_urls_come_from_reviewed_catalog() -> None: for path in GUIDES.values(): _, body = load_guide(path) - urls = set(re.findall(r"\]\((https://[^)]+)\)", body)) + urls = set(re.findall(r"\]\((https://[^)\s]+)", body)) assert urls assert urls <= catalog_urls