[Python-checkins] r86503 - in python/branches/release27-maint: Lib/test/test_shutil.py

eric.araujo python-checkins at python.org
Thu Nov 18 00:11:08 CET 2010


Author: eric.araujo
Date: Thu Nov 18 00:11:08 2010
New Revision: 86503

Log:
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
........


Modified:
   python/branches/release27-maint/   (props changed)
   python/branches/release27-maint/Lib/test/test_shutil.py

Modified: python/branches/release27-maint/Lib/test/test_shutil.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_shutil.py	(original)
+++ python/branches/release27-maint/Lib/test/test_shutil.py	Thu Nov 18 00:11:08 2010
@@ -469,6 +469,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