diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 08:12:18 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 08:12:18 -0400 |
commit | 1074affc4a94224f30692db4ab0d45ed29ac8c8d (patch) | |
tree | f78d9eeffd7783e249c416d1d85134e76a9c9278 | |
parent | 849b034ac5440def5327172fa799fbbb3d40db98 (diff) | |
download | external_python_setuptools-1074affc4a94224f30692db4ab0d45ed29ac8c8d.tar.gz external_python_setuptools-1074affc4a94224f30692db4ab0d45ed29ac8c8d.tar.bz2 external_python_setuptools-1074affc4a94224f30692db4ab0d45ed29ac8c8d.zip |
Reindent
-rw-r--r-- | setuptools/tests/fixtures.py | 10 |
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 |