diff options
author | Benoit Pierre <benoit.pierre@gmail.com> | 2017-09-20 02:10:28 +0200 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2017-10-16 21:09:12 +0200 |
commit | f2ad62e0543ea6dde2e91f08c0feed09fdd55724 (patch) | |
tree | 51a796b13ce7546c663f0171ca3bf05a6975adff /setuptools/tests/test_easy_install.py | |
parent | 403bfce4ab920823cc4ba0b5ca5ac0d1b213513d (diff) | |
download | external_python_setuptools-f2ad62e0543ea6dde2e91f08c0feed09fdd55724.tar.gz external_python_setuptools-f2ad62e0543ea6dde2e91f08c0feed09fdd55724.tar.bz2 external_python_setuptools-f2ad62e0543ea6dde2e91f08c0feed09fdd55724.zip |
tests: fix easy_install test assertion
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index c9d396f4..617ee489 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -406,7 +406,7 @@ class TestSetupRequires: lines = stdout.readlines() assert len(lines) > 0 - assert lines[-1].strip(), 'test_pkg' + assert lines[-1].strip() == 'test_pkg' def test_setup_requires_override_nspkg(self): """ |