diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-20 11:22:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-20 11:22:28 -0400 |
commit | 5523bf2a26ac1818008c9d4eb61decd8d6353669 (patch) | |
tree | 85f02d87af1076373694d34cd8027be2ecd16377 /setuptools | |
parent | 599c4f7f9789af39b541272c06b082141aae7fb3 (diff) | |
parent | a4190dd14802db1017f67332919377c9e14f95ad (diff) | |
download | external_python_setuptools-5523bf2a26ac1818008c9d4eb61decd8d6353669.tar.gz external_python_setuptools-5523bf2a26ac1818008c9d4eb61decd8d6353669.tar.bz2 external_python_setuptools-5523bf2a26ac1818008c9d4eb61decd8d6353669.zip |
Merge pull request #650 from stepshal/closing_bracket
Match closing bracket identation of opening bracket's line.
Diffstat (limited to 'setuptools')
-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 42c44edf..5aabf404 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( |