Commit 3f4ef895 authored by Erik Bray's avatar Erik Bray

Fix failing test on Windows due to path separator

parent 8a91baa0
......@@ -23,7 +23,7 @@ def test_findall(example_source):
def test_findall_curdir(example_source):
with example_source.as_cwd():
found = list(setuptools.findall())
expected = ['readme.txt', 'foo/bar.py']
expected = ['readme.txt', os.path.join('foo', 'bar.py')]
assert found == expected
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment