diff options
-rw-r--r-- | setuptools/tests/test_easy_install.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 773ca6b6..4942acbf 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -182,9 +182,10 @@ class TestUserInstallTest: log.info('this should not break') def test_local_index(self): - # make sure the local index is used - # when easy_install looks for installed - # packages + """ + The local index must be used when easy_install locates installed + packages. + """ new_location = tempfile.mkdtemp() target = tempfile.mkdtemp() egg_file = os.path.join(new_location, 'foo-1.0.egg-info') |