summaryrefslogtreecommitdiffstats
path: root/Lib/setuptools/tests
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/setuptools/tests')
-rw-r--r--Lib/setuptools/tests/__init__.py5
-rw-r--r--Lib/setuptools/tests/test_resources.py13
2 files changed, 2 insertions, 16 deletions
diff --git a/Lib/setuptools/tests/__init__.py b/Lib/setuptools/tests/__init__.py
index 9705bb5..8a767dc 100644
--- a/Lib/setuptools/tests/__init__.py
+++ b/Lib/setuptools/tests/__init__.py
@@ -362,8 +362,3 @@ class TestCommandTests(TestCase):
ts5 = makeSetup().get_command_obj('test')
ts5.ensure_finalized()
self.assertEqual(ts5.test_suite, None)
-
-
-
-
-
diff --git a/Lib/setuptools/tests/test_resources.py b/Lib/setuptools/tests/test_resources.py
index b4dbfdb..f32c72e 100644
--- a/Lib/setuptools/tests/test_resources.py
+++ b/Lib/setuptools/tests/test_resources.py
@@ -143,7 +143,7 @@ class DistroTests(TestCase):
self.assertRaises(VersionConflict, ws.resolve,
parse_requirements("Foo==0.9"), ad)
ws = WorkingSet([]) # reset
-
+
# Request an extra that causes an unresolved dependency for "Baz"
self.assertRaises(
DistributionNotFound, ws.resolve,parse_requirements("Foo[bar]"), ad
@@ -161,7 +161,7 @@ class DistroTests(TestCase):
self.assertRaises( VersionConflict,
ws.resolve, parse_requirements("Foo==1.2\nFoo!=1.2"), ad
)
-
+
def testDistroDependsOptions(self):
d = self.distRequires("""
Twisted>=1.5
@@ -481,12 +481,3 @@ class ParseTests(TestCase):
for p,v1 in enumerate(torture):
for v2 in torture[p+1:]:
c(v2,v1)
-
-
-
-
-
-
-
-
-