diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-16 22:39:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-16 22:39:43 (GMT) |
commit | 3c1198d648623089bf06d6750e84fcadde08d77d (patch) | |
tree | 15c80a0ff9eab83c54b460f12d76c3ae402506cc /Lib/sqlite3/test/hooks.py | |
parent | 25a23efcda0dc3e245eefa8c9a3f96b4baee6303 (diff) | |
download | cpython-3c1198d648623089bf06d6750e84fcadde08d77d.zip cpython-3c1198d648623089bf06d6750e84fcadde08d77d.tar.gz cpython-3c1198d648623089bf06d6750e84fcadde08d77d.tar.bz2 |
Issue #19601: Use specific asserts in sqlite3 tests.
Diffstat (limited to 'Lib/sqlite3/test/hooks.py')
-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 2bfae10..ed048b2 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.assertTrue(first_count > second_count) + self.assertGreater(first_count, second_count) def CheckCancelOperation(self): """ |