diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-06-06 08:46:15 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2018-06-06 08:46:15 -0400 |
commit | 042aab8230fe156e6d28d448aa669184e34342d8 (patch) | |
tree | 399f3e9ea0188a4d87c3e0a4b5486bb15237f9a8 | |
parent | 0a39f8e47944ef416fdd276ec91a3be464fa8a2e (diff) | |
download | external_python_setuptools-042aab8230fe156e6d28d448aa669184e34342d8.tar.gz external_python_setuptools-042aab8230fe156e6d28d448aa669184e34342d8.tar.bz2 external_python_setuptools-042aab8230fe156e6d28d448aa669184e34342d8.zip |
Feed the hobgoblins (delint).
-rw-r--r-- | tests/manual_test.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/manual_test.py b/tests/manual_test.py index e5aaf179..52295f9a 100644 --- a/tests/manual_test.py +++ b/tests/manual_test.py @@ -89,8 +89,10 @@ def test_full(): assert len(eggs) == 3 assert eggs[1].startswith('setuptools') del eggs[1] - assert eggs == ['extensions-0.3-py2.6.egg', - 'zc.recipe.egg-1.2.2-py2.6.egg'] + assert eggs == [ + 'extensions-0.3-py2.6.egg', + 'zc.recipe.egg-1.2.2-py2.6.egg', + ] if __name__ == '__main__': |