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 fb5d9e4 commit a3688c0Copy full SHA for a3688c0
1 file changed
tests/test_normalize_file_path.py
@@ -38,7 +38,7 @@ class TestNormalizeFilePathPercentEncoding(unittest.TestCase):
38
def test_space_decoded(self) -> None:
39
out = normalize_file_path("file:///C:/My%20Documents/file.txt")
40
self.assertNotIn("%20", out)
41
- self.assertIn("My Documents" if sys.platform != "win32" else "my documents", out)
+ self.assertIn("my documents", out)
42
43
def test_hash_decoded(self) -> None:
44
out = normalize_file_path("file:///C:/repo/src%23internal/mod.py")
0 commit comments