summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_shutil.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-11-06 02:12:51 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-11-06 02:12:51 (GMT)
commit1c5054996fcb7af6831eb1fea2df3678fb23e986 (patch)
tree3fba3b3b2f7c1aba4e983b35b9a259d5358024df /Lib/test/test_shutil.py
parent5ac6d80c02a4da1f36652e6531da3c886df1f58c (diff)
downloadcpython-1c5054996fcb7af6831eb1fea2df3678fb23e986.zip
cpython-1c5054996fcb7af6831eb1fea2df3678fb23e986.tar.gz
cpython-1c5054996fcb7af6831eb1fea2df3678fb23e986.tar.bz2
Fix one omission in r78359
Diffstat (limited to 'Lib/test/test_shutil.py')
-rw-r--r--Lib/test/test_shutil.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py
index 81c9036..270293a 100644
--- a/Lib/test/test_shutil.py
+++ b/Lib/test/test_shutil.py
@@ -515,6 +515,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):