From: Benjamin Peterson Date: Thu, 13 Mar 2014 02:51:52 +0000 (-0500) Subject: weaken callback count inequality (closes #20901) X-Git-Tag: v3.4.1rc1~233^2~44^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=966f2fca5fbf4d8d1196bc0014be4e9f7d4d2c10;p=python weaken callback count inequality (closes #20901) --- diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index 60f7605482..ede0becad4 100644 --- a/Lib/sqlite3/test/hooks.py +++ b/Lib/sqlite3/test/hooks.py @@ -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): """