Skip to content

Commit ca0cc6c

Browse files
committed
Minor Windows path adjustments for test
1 parent a47732f commit ca0cc6c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/test_pathtools.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def test_parse_path():
3535

3636

3737
def test_parse_path_windows():
38-
path = r'C:\foo\bar'
3938
"""Test using a Windows-style path."""
39+
path = r'C:\Foo\Bar'
4040
parsed = parse_path(path)
4141

4242
assert parsed['orig'] == path
43-
assert parsed['full'] == r'C:/foo/bar'
44-
assert parsed['fname'] == 'bar'
45-
assert parsed['dname'] == 'foo'
43+
assert parsed['full'] == 'C:/Foo/Bar'
44+
assert parsed['fname'] == 'Bar'
45+
assert parsed['dname'] == 'Foo'
4646

4747

4848
def test_parse_path_windows_newline_tab():

0 commit comments

Comments
 (0)