commit | 78ee0784058f52e31626fff63b56d2a991717b10 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Nov 17 00:39:12 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sun Nov 17 00:39:12 2013 +0200 |
tree | 0ac7b10c94f64e0bfed14c7e8de8de6750c07c65 | |
parent | 39989157add83040a3d29a1bd0a04142ad98d7db [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 087edb0..60f7605 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): """