summaryrefslogtreecommitdiff
path: root/tests/modeltests/transactions/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modeltests/transactions/models.py')
-rw-r--r--tests/modeltests/transactions/models.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/modeltests/transactions/models.py b/tests/modeltests/transactions/models.py
index 92e0f38f47..e1fad8063e 100644
--- a/tests/modeltests/transactions/models.py
+++ b/tests/modeltests/transactions/models.py
@@ -17,16 +17,16 @@ class Reporter(models.Model):
def __str__(self):
return "%s %s" % (self.first_name, self.last_name)
-API_TESTS = """
+__test__ = {'API_TESTS':"""
>>> from django.db import connection, transaction
-"""
+"""}
from django.conf import settings
building_docs = getattr(settings, 'BUILDING_DOCS', False)
if building_docs or settings.DATABASE_ENGINE != 'mysql':
- API_TESTS += """
+ __test__['API_TESTS'] += """
# the default behavior is to autocommit after each save() action
>>> def create_a_reporter_then_fail(first, last):
... a = Reporter(first_name=first, last_name=last)