From 3f4ef89512da6a3e89f27121446ec59773869017 Mon Sep 17 00:00:00 2001 From: Erik Bray Date: Wed, 23 Dec 2015 14:07:40 -0500 Subject: Fix failing test on Windows due to path separator --- setuptools/tests/test_setuptools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/tests/test_setuptools.py') 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 -- cgit v1.2.1