diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-03-13 02:51:52 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-03-13 02:51:52 (GMT) |
| commit | 4c874ef4a564ddc288b3c4bf8dd10d3574a043b7 (patch) | |
| tree | e81e1f71ebc833529f82d8d68f9d30239aac3c4f /Lib/sqlite3 | |
| parent | 944996ff20c42d00f374f1816fdea633b412e832 (diff) | |
| download | cpython-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.py | 2 |
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): """ |
