summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Bray <embray@stsci.edu>2015-12-23 14:07:40 -0500
committerErik Bray <embray@stsci.edu>2015-12-23 14:07:40 -0500
commit4996d958e5a9b659582e841554d33d49a81b1d86 (patch)
tree6b97f0c2206072a79fe5c631f9adfb8dcd48622e
parentf51ef36a44bf11832585c462cf17c19b5c187aec (diff)
downloadpython-setuptools-bitbucket-4996d958e5a9b659582e841554d33d49a81b1d86.tar.gz
Fix failing test on Windows due to path separator
-rw-r--r--setuptools/tests/test_setuptools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_setuptools.py b/setuptools/tests/test_setuptools.py
index 8aca593a..e59800d2 100644
--- a/setuptools/tests/test_setuptools.py
+++ b/setuptools/tests/test_setuptools.py
@@ -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