diff options
author | PJ Eby <distutils-sig@python.org> | 2005-09-29 16:49:55 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-09-29 16:49:55 +0000 |
commit | 747cd179d356f946c6e6e847904e481070adba19 (patch) | |
tree | ba701c5aeaa8e5603dd557759fefc95b46691991 /setuptools | |
parent | 8423e8a67d2bb8a54f634496d0e4786e9937fbd2 (diff) | |
download | external_python_setuptools-747cd179d356f946c6e6e847904e481070adba19.tar.gz external_python_setuptools-747cd179d356f946c6e6e847904e481070adba19.tar.bz2 external_python_setuptools-747cd179d356f946c6e6e847904e481070adba19.zip |
Bugfixes. :(
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041258
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/tests/test_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
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'],[]) |