Issue #19601: Use specific asserts in sqlite3 tests.

This commit is contained in:
Serhiy Storchaka 2013-11-17 00:39:12 +02:00
parent 39989157ad
commit 78ee078405
2 changed files with 20 additions and 30 deletions

View file

@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
create table bar (a, b)
""")
second_count = len(progress_calls)
self.assertTrue(first_count > second_count)
self.assertGreater(first_count, second_count)
def CheckCancelOperation(self):
"""