aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-06-06 08:46:15 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-06-06 08:46:15 -0400
commit042aab8230fe156e6d28d448aa669184e34342d8 (patch)
tree399f3e9ea0188a4d87c3e0a4b5486bb15237f9a8
parent0a39f8e47944ef416fdd276ec91a3be464fa8a2e (diff)
downloadexternal_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.py6
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__':