mirror of
https://github.com/python/cpython.git
synced 2025-10-21 14:12:27 +00:00
Issue #19601: Use specific asserts in sqlite3 tests.
This commit is contained in:
parent
39989157ad
commit
78ee078405
2 changed files with 20 additions and 30 deletions
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue