summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-03-13 02:51:52 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-03-13 02:51:52 (GMT)
commit4c874ef4a564ddc288b3c4bf8dd10d3574a043b7 (patch)
treee81e1f71ebc833529f82d8d68f9d30239aac3c4f /Lib/sqlite3
parent944996ff20c42d00f374f1816fdea633b412e832 (diff)
downloadcpython-4c874ef4a564ddc288b3c4bf8dd10d3574a043b7.zip
cpython-4c874ef4a564ddc288b3c4bf8dd10d3574a043b7.tar.gz
cpython-4c874ef4a564ddc288b3c4bf8dd10d3574a043b7.tar.bz2
weaken callback count inequality (closes #20901)
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r--Lib/sqlite3/test/hooks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py
index ed048b2..16f217d 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):
"""