Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 966f2fc

Browse files
committed
weaken callback count inequality (closes #20901)
1 parent 5eea8a7 commit 966f2fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/sqlite3/test/hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def progress():
162162
create table bar (a, b)
163163
""")
164164
second_count = len(progress_calls)
165-
self.assertGreater(first_count, second_count)
165+
self.assertGreaterEqual(first_count, second_count)
166166

167167
def CheckCancelOperation(self):
168168
"""

0 commit comments

Comments
 (0)