mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
weaken callback count inequality (closes #20901)
This commit is contained in:
parent
5eea8a7780
commit
966f2fca5f
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
|
||||||
create table bar (a, b)
|
create table bar (a, b)
|
||||||
""")
|
""")
|
||||||
second_count = len(progress_calls)
|
second_count = len(progress_calls)
|
||||||
self.assertGreater(first_count, second_count)
|
self.assertGreaterEqual(first_count, second_count)
|
||||||
|
|
||||||
def CheckCancelOperation(self):
|
def CheckCancelOperation(self):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue