diff options
Diffstat (limited to 'tests/backends/sqlite')
| -rw-r--r-- | tests/backends/sqlite/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/backends/sqlite/tests.py b/tests/backends/sqlite/tests.py index 3898c8f13c..c014519910 100644 --- a/tests/backends/sqlite/tests.py +++ b/tests/backends/sqlite/tests.py @@ -131,7 +131,7 @@ class SchemaTests(TransactionTestCase): self.assertIsNotNone(match) self.assertEqual( 'integer NOT NULL PRIMARY KEY AUTOINCREMENT', - match.group(1), + match[1], 'Wrong SQL used to create an auto-increment column on SQLite' ) |
