diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-17 00:17:46 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-17 00:17:46 +0200 |
| commit | c0d4c5676e3118c7189a97a555bfb70447276f29 (patch) | |
| tree | c29939aebadd6a5b946d6b289e4babc57b7ea38b /tests/test_archive_util.py | |
| parent | 66f3b499473504c130a52d222b827a4413127f12 (diff) | |
| download | python-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.py | 2 |
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, |
