diff options
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | setuptools/tests/test_resources.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ setup( url = "http://peak.telecommunity.com/DevCenter/setuptools", test_suite = 'setuptools.tests.test_suite', packages = find_packages(), - package_data = {'setuptools': ['launcher.exe']}, + package_data = {'setuptools': ['*.exe']}, py_modules = ['pkg_resources', 'easy_install'], zip_safe = False, # We want 'python -m easy_install' to work, for now :( diff --git a/setuptools/tests/test_resources.py b/setuptools/tests/test_resources.py index 5b9751f9..c36ad952 100644 --- a/setuptools/tests/test_resources.py +++ b/setuptools/tests/test_resources.py @@ -23,7 +23,7 @@ class DistroTests(TestCase): def testCollection(self): # empty path should produce no distributions - ad = Environment([], python=None) + ad = Environment([], platform=None, python=None) self.assertEqual(list(ad), []) self.assertEqual(ad['FooPkg'],[]) |