mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Issue #19600: Use specific asserts in distutils tests.
This commit is contained in:
parent
5665bc5980
commit
39989157ad
16 changed files with 36 additions and 36 deletions
|
|
@ -36,7 +36,7 @@ class cleanTestCase(support.TempdirManager,
|
|||
|
||||
# make sure the files where removed
|
||||
for name, path in dirs:
|
||||
self.assertTrue(not os.path.exists(path),
|
||||
self.assertFalse(os.path.exists(path),
|
||||
'%s was not removed' % path)
|
||||
|
||||
# let's run the command again (should spit warnings but succeed)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue