commit | 3c1198d648623089bf06d6750e84fcadde08d77d | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Nov 17 00:39:43 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sun Nov 17 00:39:43 2013 +0200 |
tree | 15c80a0ff9eab83c54b460f12d76c3ae402506cc | |
parent | 25a23efcda0dc3e245eefa8c9a3f96b4baee6303 [diff] [blame] |
Issue #19601: Use specific asserts in sqlite3 tests.
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 @@ 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): """