summaryrefslogtreecommitdiff
path: root/Lib/distutils/tests/test_clean.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/tests/test_clean.py')
-rw-r--r--[-rwxr-xr-x]Lib/distutils/tests/test_clean.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_clean.py b/Lib/distutils/tests/test_clean.py
index eb8958bff5..b64f300a04 100755..100644
--- a/Lib/distutils/tests/test_clean.py
+++ b/Lib/distutils/tests/test_clean.py
@@ -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)