diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-12 17:46:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-12 17:46:23 (GMT) |
commit | 84023247b432afba7075e87090986bca72a0e8b0 (patch) | |
tree | e297789dc55f83ddf5483f93bcac45e429f42872 /Lib/test/test_shutil.py | |
parent | fda7fe01484a3a53a6ba3365629e567488c73803 (diff) | |
download | cpython-84023247b432afba7075e87090986bca72a0e8b0.zip cpython-84023247b432afba7075e87090986bca72a0e8b0.tar.gz cpython-84023247b432afba7075e87090986bca72a0e8b0.tar.bz2 |
Issue #25607: Restore old distutils logging threshold after running tests that
parse command line arguments.
Diffstat (limited to 'Lib/test/test_shutil.py')
-rw-r--r-- | Lib/test/test_shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 5b4e7e7..26a3eae 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -1031,7 +1031,7 @@ class TestShutil(unittest.TestCase): # now create another tarball using `tar` tarball2 = os.path.join(root_dir, 'archive2.tar') tar_cmd = ['tar', '-cf', 'archive2.tar', base_dir] - with support.change_cwd(root_dir), captured_stdout(): + with support.change_cwd(root_dir): spawn(tar_cmd) self.assertTrue(os.path.isfile(tarball2)) |