aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-30 08:12:18 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-07-30 08:12:18 -0400
commit1074affc4a94224f30692db4ab0d45ed29ac8c8d (patch)
treef78d9eeffd7783e249c416d1d85134e76a9c9278
parent849b034ac5440def5327172fa799fbbb3d40db98 (diff)
downloadexternal_python_setuptools-1074affc4a94224f30692db4ab0d45ed29ac8c8d.tar.gz
external_python_setuptools-1074affc4a94224f30692db4ab0d45ed29ac8c8d.tar.bz2
external_python_setuptools-1074affc4a94224f30692db4ab0d45ed29ac8c8d.zip
Reindent
-rw-r--r--setuptools/tests/fixtures.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/tests/fixtures.py b/setuptools/tests/fixtures.py
index 1e81ee26..5204c8d1 100644
--- a/setuptools/tests/fixtures.py
+++ b/setuptools/tests/fixtures.py
@@ -10,11 +10,11 @@ def user_override(monkeypatch):
a context.
"""
with contexts.tempdir() as user_base:
- monkeypatch.setattr('site.USER_BASE', user_base)
- with contexts.tempdir() as user_site:
- monkeypatch.setattr('site.USER_SITE', user_site)
- with contexts.save_user_site_setting():
- yield
+ monkeypatch.setattr('site.USER_BASE', user_base)
+ with contexts.tempdir() as user_site:
+ monkeypatch.setattr('site.USER_SITE', user_site)
+ with contexts.save_user_site_setting():
+ yield
@pytest.yield_fixture