blob: 75ac6ac7a6ce089b960a8defc958b9f669e99fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
http://bugs.python.org/issue20901
http://hg.python.org/cpython/rev/4d626a9df062
--- Lib/sqlite3/test/hooks.py
+++ Lib/sqlite3/test/hooks.py
@@ -162,7 +162,7 @@
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):
"""
|