Matej Stuchlik c623e79
diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py
Matej Stuchlik c623e79
--- a/Lib/sqlite3/test/hooks.py
Matej Stuchlik c623e79
+++ b/Lib/sqlite3/test/hooks.py
Matej Stuchlik c623e79
@@ -162,7 +162,7 @@ class ProgressTests(unittest.TestCase):
Matej Stuchlik c623e79
             create table bar (a, b)
Matej Stuchlik c623e79
             """)
Matej Stuchlik c623e79
         second_count = len(progress_calls)
Matej Stuchlik c623e79
-        self.assertTrue(first_count > second_count)
Matej Stuchlik c623e79
+        self.assertTrue(first_count >= second_count)
Matej Stuchlik c623e79
 
Matej Stuchlik c623e79
     def CheckCancelOperation(self):
Matej Stuchlik c623e79
         """
Matej Stuchlik c623e79