From: Éric Araujo Date: Wed, 17 Nov 2010 23:11:08 +0000 (+0000) Subject: Merged revisions 86235 via svnmerge from X-Git-Tag: v2.7.1~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c4253d600f39f3a12fe4010523b51e8cbdaedae;p=thirdparty%2FPython%2Fcpython.git Merged revisions 86235 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86235 | eric.araujo | 2010-11-06 03:12:51 +0100 (sam., 06 nov. 2010) | 2 lines Fix one omission in r78359 ........ --- diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 648a2cda43f4..9f14fd8cce71 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -469,6 +469,7 @@ class TestShutil(unittest.TestCase): # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) def test_make_archive(self):