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: http://git.ipfire.org/?a=commitdiff_plain;h=966f2fca5fbf4d8d1196bc0014be4e9f7d4d2c10;p=thirdparty%2FPython%2Fcpython.git weaken callback count inequality (closes #20901) --- diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py index 60f760548213..ede0becad4eb 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): """