From 1c4253d600f39f3a12fe4010523b51e8cbdaedae Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89ric=20Araujo?= Date: Wed, 17 Nov 2010 23:11:08 +0000 Subject: [PATCH] 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 ........ --- Lib/test/test_shutil.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 648a2cda43..9f14fd8cce 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): -- 2.50.0