Issue #19600: Use specific asserts in distutils tests.

This commit is contained in:
Serhiy Storchaka 2013-11-17 00:20:12 +02:00
commit 932c6160b5
16 changed files with 36 additions and 36 deletions

View file

@ -236,7 +236,7 @@ class InstallTestCase(support.TempdirManager,
self.test_record()
finally:
install_module.DEBUG = False
self.assertTrue(len(self.logs) > old_logs_len)
self.assertGreater(len(self.logs), old_logs_len)
def test_suite():