[Python-checkins] r72748 - in python/branches/py3k: Lib/distutils/tests/test_archive_util.py

tarek.ziade python-checkins at python.org
Sun May 17 17:03:23 CEST 2009


Author: tarek.ziade
Date: Sun May 17 17:03:23 2009
New Revision: 72748

Log:
Merged revisions 72746 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72746 | tarek.ziade | 2009-05-17 16:59:05 +0200 (Sun, 17 May 2009) | 1 line
  
  fixed the test name
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/distutils/tests/test_archive_util.py

Modified: python/branches/py3k/Lib/distutils/tests/test_archive_util.py
==============================================================================
--- python/branches/py3k/Lib/distutils/tests/test_archive_util.py	(original)
+++ python/branches/py3k/Lib/distutils/tests/test_archive_util.py	Sun May 17 17:03:23 2009
@@ -1,5 +1,5 @@
 """Tests for distutils.archive_util."""
-__revision__ = "$Id:$"
+__revision__ = "$Id$"
 
 import unittest
 import os
@@ -40,7 +40,7 @@
         self.assert_(os.path.exists(tarball))
 
     @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run')
-    def test_make_tarball(self):
+    def test_make_zipfile(self):
         # creating something to tar
         tmpdir = self.mkdtemp()
         self.write_file([tmpdir, 'file1'], 'xxx')


More information about the Python-checkins mailing list