diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-14 08:58:30 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-14 12:43:32 +0700 |
commit | a4190dd14802db1017f67332919377c9e14f95ad (patch) | |
tree | 32c30d9860c337633f92744de1987d64982ba9c4 | |
parent | 45de6ea8b9392771a6a14e012605614a7c148506 (diff) | |
download | external_python_setuptools-a4190dd14802db1017f67332919377c9e14f95ad.tar.gz external_python_setuptools-a4190dd14802db1017f67332919377c9e14f95ad.tar.bz2 external_python_setuptools-a4190dd14802db1017f67332919377c9e14f95ad.zip |
Match closing bracket identation of opening bracket's line.
-rw-r--r-- | setuptools/tests/test_bdist_egg.py | 2 | ||||
-rw-r--r-- | setuptools/tests/test_egg_info.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_bdist_egg.py b/setuptools/tests/test_bdist_egg.py index a7ceac86..4cbfdb64 100644 --- a/setuptools/tests/test_bdist_egg.py +++ b/setuptools/tests/test_bdist_egg.py @@ -33,7 +33,7 @@ class Test: script_args=['bdist_egg'], name='foo', py_modules=['hi'] - )) + )) os.makedirs(os.path.join('build', 'src')) with contexts.quiet(): dist.parse_command_line() diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index afbda2cc..dea7f992 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -179,7 +179,7 @@ class TestEggInfo(object): """ % requires_line) build_files({ 'setup.py': setup_script, - }) + }) def test_install_requires_with_markers(self, tmpdir_cwd, env): self._setup_script_with_requires( |