From c0d4c5676e3118c7189a97a555bfb70447276f29 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 17 Nov 2013 00:17:46 +0200 Subject: Issue #19600: Use specific asserts in distutils tests. --- tests/test_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_install.py') diff --git a/tests/test_install.py b/tests/test_install.py index b1901273..ede88e5d 100644 --- a/tests/test_install.py +++ b/tests/test_install.py @@ -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(): -- cgit v1.2.1