[Python-checkins] r86235 - python/branches/py3k/Lib/test/test_shutil.py

eric.araujo python-checkins at python.org
Sat Nov 6 03:12:51 CET 2010


Author: eric.araujo
Date: Sat Nov  6 03:12:51 2010
New Revision: 86235

Log:
Fix one omission in r78359


Modified:
   python/branches/py3k/Lib/test/test_shutil.py

Modified: python/branches/py3k/Lib/test/test_shutil.py
==============================================================================
--- python/branches/py3k/Lib/test/test_shutil.py	(original)
+++ python/branches/py3k/Lib/test/test_shutil.py	Sat Nov  6 03:12:51 2010
@@ -515,6 +515,7 @@
 
         # check if the compressed tarball was created
         tarball = base_name + '.zip'
+        self.assertTrue(os.path.exists(tarball))
 
 
     def test_make_archive(self):


More information about the Python-checkins mailing list