summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-30 10:21:39 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-30 10:21:39 -0500
commitef6b79453e26811eb387a8252834bf1f990f2a8d (patch)
tree2ad4dff7e6277d16c0a9799ae4477aedc2a3a046 /setuptools/tests/test_easy_install.py
parent1a0233012a7a800bf585f739c4121e2ee830436d (diff)
downloadpython-setuptools-git-ef6b79453e26811eb387a8252834bf1f990f2a8d.tar.gz
Reindent
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r--setuptools/tests/test_easy_install.py17
1 files changed, 7 insertions, 10 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index 05063331..4ee5adbe 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -302,17 +302,14 @@ class TestSetupRequires(unittest.TestCase):
with tempdir_context() as dir:
dist_path = os.path.join(dir, 'setuptools-test-fetcher-1.0.tar.gz')
script = DALS("""
- import setuptools
- setuptools.setup(
- name="setuptools-test-fetcher",
- version="1.0",
- setup_requires = ['does-not-exist'],
- )
+ import setuptools
+ setuptools.setup(
+ name="setuptools-test-fetcher",
+ version="1.0",
+ setup_requires = ['does-not-exist'],
+ )
""")
- make_trivial_sdist(
- dist_path,
- script,
- )
+ make_trivial_sdist(dist_path, script)
yield dist_path
def test_setup_requires_overrides_version_conflict(self):