diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-17 00:20:12 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-17 00:20:12 +0200 |
| commit | 954834c227df70628fb7dba9f0741aab06a44920 (patch) | |
| tree | c3b26408f9b20bf77493b2bc42e1a014590ecb33 /tests/test_config_cmd.py | |
| parent | ad0f0c5c29e6c8af182a9e72d995d91911cc8349 (diff) | |
| parent | c0d4c5676e3118c7189a97a555bfb70447276f29 (diff) | |
| download | python-setuptools-git-954834c227df70628fb7dba9f0741aab06a44920.tar.gz | |
Issue #19600: Use specific asserts in distutils tests.
Diffstat (limited to 'tests/test_config_cmd.py')
| -rw-r--r-- | tests/test_config_cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config_cmd.py b/tests/test_config_cmd.py index e2e6e4eb..79894c78 100644 --- a/tests/test_config_cmd.py +++ b/tests/test_config_cmd.py @@ -81,7 +81,7 @@ class ConfigTestCase(support.LoggingSilencer, cmd._clean(f1, f2) for f in (f1, f2): - self.assertTrue(not os.path.exists(f)) + self.assertFalse(os.path.exists(f)) def test_suite(): return unittest.makeSuite(ConfigTestCase) |
