diff options
author | Erik Bray <embray@stsci.edu> | 2015-12-23 14:07:40 -0500 |
---|---|---|
committer | Erik Bray <embray@stsci.edu> | 2015-12-23 14:07:40 -0500 |
commit | 3f4ef89512da6a3e89f27121446ec59773869017 (patch) | |
tree | 432b690455b2632fb11fbb1b0d5053c7fcbca548 /setuptools/tests/test_setuptools.py | |
parent | 8a91baa090870aa3e70ea26c716ccde955ec1381 (diff) | |
download | external_python_setuptools-3f4ef89512da6a3e89f27121446ec59773869017.tar.gz external_python_setuptools-3f4ef89512da6a3e89f27121446ec59773869017.tar.bz2 external_python_setuptools-3f4ef89512da6a3e89f27121446ec59773869017.zip |
Fix failing test on Windows due to path separator
Diffstat (limited to 'setuptools/tests/test_setuptools.py')
-rw-r--r-- | setuptools/tests/test_setuptools.py | 2 |
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 |