Commit 966f2fca authored by Benjamin Peterson's avatar Benjamin Peterson

weaken callback count inequality (closes #20901)

parent 5eea8a77
......@@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
create table bar (a, b)
""")
second_count = len(progress_calls)
self.assertGreater(first_count, second_count)
self.assertGreaterEqual(first_count, second_count)
def CheckCancelOperation(self):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment