Skip to content

Commit a3688c0

Browse files
committed
fix: align windows-drive case expectation in URI test
1 parent fb5d9e4 commit a3688c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_normalize_file_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class TestNormalizeFilePathPercentEncoding(unittest.TestCase):
3838
def test_space_decoded(self) -> None:
3939
out = normalize_file_path("file:///C:/My%20Documents/file.txt")
4040
self.assertNotIn("%20", out)
41-
self.assertIn("My Documents" if sys.platform != "win32" else "my documents", out)
41+
self.assertIn("my documents", out)
4242

4343
def test_hash_decoded(self) -> None:
4444
out = normalize_file_path("file:///C:/repo/src%23internal/mod.py")

0 commit comments

Comments
 (0)