diff options
author | Bastian Venthur <venthur@debian.org> | 2019-08-25 12:43:10 +0200 |
---|---|---|
committer | Bastian Venthur <venthur@debian.org> | 2019-08-25 12:43:10 +0200 |
commit | 9dd100fa6c77745c61d20baca965c13d63f7d901 (patch) | |
tree | 07ba01dd07a70f0fc0c14eb23a014d7b2dfd1408 | |
parent | 976abeeaaacef8019329b7dfea5dcc8f47f4d70a (diff) | |
download | external_python_setuptools-9dd100fa6c77745c61d20baca965c13d63f7d901.tar.gz external_python_setuptools-9dd100fa6c77745c61d20baca965c13d63f7d901.tar.bz2 external_python_setuptools-9dd100fa6c77745c61d20baca965c13d63f7d901.zip |
Removed unused context.quiet
-rw-r--r-- | setuptools/tests/test_bdist_egg.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/setuptools/tests/test_bdist_egg.py b/setuptools/tests/test_bdist_egg.py index a1860bf3..e28f87de 100644 --- a/setuptools/tests/test_bdist_egg.py +++ b/setuptools/tests/test_bdist_egg.py @@ -76,7 +76,6 @@ class Test: 'setuptools.installation': ['eggsecutable = my_package.some_module:main_func']}, )) - with contexts.quiet(): - dist.parse_command_line() - with pytest.warns(SetuptoolsDeprecationWarning): - dist.run_commands() + dist.parse_command_line() + with pytest.warns(SetuptoolsDeprecationWarning): + dist.run_commands() |