diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-30 10:21:39 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-30 10:21:39 -0500 |
| commit | ef6b79453e26811eb387a8252834bf1f990f2a8d (patch) | |
| tree | 2ad4dff7e6277d16c0a9799ae4477aedc2a3a046 /setuptools/tests/test_easy_install.py | |
| parent | 1a0233012a7a800bf585f739c4121e2ee830436d (diff) | |
| download | python-setuptools-git-ef6b79453e26811eb387a8252834bf1f990f2a8d.tar.gz | |
Reindent
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
| -rw-r--r-- | setuptools/tests/test_easy_install.py | 17 |
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): |
