summaryrefslogtreecommitdiff
path: root/tests/test_archive_util.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-17 00:17:46 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-17 00:17:46 +0200
commitc0d4c5676e3118c7189a97a555bfb70447276f29 (patch)
treec29939aebadd6a5b946d6b289e4babc57b7ea38b /tests/test_archive_util.py
parent66f3b499473504c130a52d222b827a4413127f12 (diff)
downloadpython-setuptools-git-c0d4c5676e3118c7189a97a555bfb70447276f29.tar.gz
Issue #19600: Use specific asserts in distutils tests.
Diffstat (limited to 'tests/test_archive_util.py')
-rw-r--r--tests/test_archive_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_archive_util.py b/tests/test_archive_util.py
index 1afdd462..d3fb24ad 100644
--- a/tests/test_archive_util.py
+++ b/tests/test_archive_util.py
@@ -210,7 +210,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
dry_run=True)
finally:
os.chdir(old_dir)
- self.assertTrue(not os.path.exists(tarball))
+ self.assertFalse(os.path.exists(tarball))
self.assertEqual(len(w.warnings), 1)
@unittest.skipUnless(ZIP_SUPPORT and ZLIB_SUPPORT,