summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-05-17 14:59:05 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-05-17 14:59:05 (GMT)
commit6dd6b619a85e64e4fcb4b9940603820cce771ba9 (patch)
tree1cd59ab1c753b85e4d72e0d12317abb59d654322 /Lib/distutils
parentcadaf551e04d6db6639338895d5318f843cdd3b7 (diff)
downloadcpython-6dd6b619a85e64e4fcb4b9940603820cce771ba9.zip
cpython-6dd6b619a85e64e4fcb4b9940603820cce771ba9.tar.gz
cpython-6dd6b619a85e64e4fcb4b9940603820cce771ba9.tar.bz2
fixed the test name
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/tests/test_archive_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_archive_util.py b/Lib/distutils/tests/test_archive_util.py
index f5fd9ea..3e1e04a 100644
--- a/Lib/distutils/tests/test_archive_util.py
+++ b/Lib/distutils/tests/test_archive_util.py
@@ -1,5 +1,5 @@
"""Tests for distutils.archive_util."""
-__revision__ = "$Id:$"
+__revision__ = "$Id$"
import unittest
import os
@@ -40,7 +40,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
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')