Skip to content

Commit f880a73

Browse files
committed
Fix os-dependent test
1 parent d864089 commit f880a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def test_is_absolute_href_os_aware(self) -> None:
250250
test_cases = [
251251
("/item.json", not incl_drive_letter),
252252
("/home/someuser/Downloads/item.json", not incl_drive_letter),
253-
("file:///home/someuser/Downloads/item.json", True),
253+
("file:///home/someuser/Downloads/item.json", not incl_drive_letter),
254254
("d:/item.json", is_windows),
255255
("c:/files/more_files/item.json", is_windows),
256256
]

0 commit comments

Comments
 (0)