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 a47732f commit ca0cc6cCopy full SHA for ca0cc6c
1 file changed
tests/test_pathtools.py
@@ -35,14 +35,14 @@ def test_parse_path():
35
36
37
def test_parse_path_windows():
38
- path = r'C:\foo\bar'
39
"""Test using a Windows-style path."""
+ path = r'C:\Foo\Bar'
40
parsed = parse_path(path)
41
42
assert parsed['orig'] == path
43
- assert parsed['full'] == r'C:/foo/bar'
44
- assert parsed['fname'] == 'bar'
45
- assert parsed['dname'] == 'foo'
+ assert parsed['full'] == 'C:/Foo/Bar'
+ assert parsed['fname'] == 'Bar'
+ assert parsed['dname'] == 'Foo'
46
47
48
def test_parse_path_windows_newline_tab():
0 commit comments