summaryrefslogtreecommitdiff
path: root/tests/regressiontests/initial_sql_regress
diff options
context:
space:
mode:
authorChristopher Long <indirecthit@gmail.com>2006-08-28 13:06:03 +0000
committerChristopher Long <indirecthit@gmail.com>2006-08-28 13:06:03 +0000
commit61d6f592c9c6240537bf4f4c3844f563f7fb68e6 (patch)
treefcba989e95f88cce22f8374ceea5c5201d318624 /tests/regressiontests/initial_sql_regress
parentbd64483da63c3790446107b3f7151768dc1f6e65 (diff)
[per-object-permissions] Merged to trunk 3666
git-svn-id: http://code.djangoproject.com/svn/django/branches/per-object-permissions@3669 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/initial_sql_regress')
-rw-r--r--tests/regressiontests/initial_sql_regress/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/initial_sql_regress/models.py b/tests/regressiontests/initial_sql_regress/models.py
index c4cf12bdf7..dedbba8e5c 100644
--- a/tests/regressiontests/initial_sql_regress/models.py
+++ b/tests/regressiontests/initial_sql_regress/models.py
@@ -7,7 +7,7 @@ from django.db import models
class Simple(models.Model):
name = models.CharField(maxlength = 50)
-API_TESTS = ""
+__test__ = {'API_TESTS':""}
# NOTE: The format of the included SQL file for this test suite is important.
# It must end with a trailing newline in order to test the fix for #2161.