We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d987ff commit 3434620Copy full SHA for 3434620
tests/test_utils.py
@@ -240,8 +240,8 @@ def test_is_absolute_href_os_aware(self) -> None:
240
test_cases = [
241
("/item.json", not (is_windows and is_py_3_13)),
242
("/home/someuser/Downloads/item.json", not (is_windows and is_py_3_13)),
243
- ("d:/item.json", (is_windows and is_py_3_13)),
244
- ("c:/files/more_files/item.json", (is_windows and is_py_3_13)),
+ ("d:/item.json", is_windows),
+ ("c:/files/more_files/item.json", is_windows),
245
]
246
247
for href, expected in test_cases:
0 commit comments