diff options
Diffstat (limited to 'tests/modeltests/transactions/models.py')
| -rw-r--r-- | tests/modeltests/transactions/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/transactions/models.py b/tests/modeltests/transactions/models.py index a3222cd511..06d21bbdd4 100644 --- a/tests/modeltests/transactions/models.py +++ b/tests/modeltests/transactions/models.py @@ -25,7 +25,7 @@ from django.conf import settings building_docs = getattr(settings, 'BUILDING_DOCS', False) -if building_docs or settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'): +if building_docs or settings.DATABASE_ENGINE != 'mysql': __test__['API_TESTS'] += """ # the default behavior is to autocommit after each save() action >>> def create_a_reporter_then_fail(first, last): |
