summaryrefslogtreecommitdiff
path: root/tests/test_archive_util.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-17 00:20:12 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-17 00:20:12 +0200
commit954834c227df70628fb7dba9f0741aab06a44920 (patch)
treec3b26408f9b20bf77493b2bc42e1a014590ecb33 /tests/test_archive_util.py
parentad0f0c5c29e6c8af182a9e72d995d91911cc8349 (diff)
parentc0d4c5676e3118c7189a97a555bfb70447276f29 (diff)
downloadpython-setuptools-git-954834c227df70628fb7dba9f0741aab06a44920.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 caa0db20..6b42c5a2 100644
--- a/tests/test_archive_util.py
+++ b/tests/test_archive_util.py
@@ -217,7 +217,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,