diff --git a/tests/test_utils.py b/tests/test_utils.py index 41db0c4f..72828573 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -240,8 +240,8 @@ def test_is_absolute_href_os_aware(self) -> None: test_cases = [ ("/item.json", not (is_windows and is_py_3_13)), ("/home/someuser/Downloads/item.json", not (is_windows and is_py_3_13)), - ("d:/item.json", (is_windows and is_py_3_13)), - ("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), ] for href, expected in test_cases: