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 a3688c0 commit 011f6e8Copy full SHA for 011f6e8
1 file changed
tests/test_normalize_file_path.py
@@ -81,7 +81,7 @@ def test_file_uri_with_windows_drive(self) -> None:
81
out = normalize_file_path("file:///C:/Users/Dev/project")
82
self.assertIn("users", out)
83
self.assertIn("dev", out)
84
- self.assertTrue(out.startswith("c:") or out.startswith("C:"))
+ self.assertTrue(out.startswith("c:"))
85
86
def test_mixed_case_drive_lowercased(self) -> None:
87
out = normalize_file_path(r"E:\Mixed\Case\Path")
0 commit comments