summaryrefslogtreecommitdiff
path: root/tests/modeltests/proxy_model_inheritance
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-03-25 13:14:01 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-03-25 13:14:01 +0000
commitef8d351cdfdbfe6dfd6763d52529e91201699006 (patch)
treebb5899e1bee6e2f87ebdf2ade6daf2526fa02f45 /tests/modeltests/proxy_model_inheritance
parent04aa8a007e467fe5fce45873999dbccd29b52b6e (diff)
Fixed #12286 -- Modified the test case added in r12828 so that it passes under Postgres.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/proxy_model_inheritance')
-rw-r--r--tests/modeltests/proxy_model_inheritance/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modeltests/proxy_model_inheritance/tests.py b/tests/modeltests/proxy_model_inheritance/tests.py
index 557b1dde03..a07958a13b 100644
--- a/tests/modeltests/proxy_model_inheritance/tests.py
+++ b/tests/modeltests/proxy_model_inheritance/tests.py
@@ -12,9 +12,9 @@ import sys
from django.conf import settings, Settings
from django.core.management import call_command
from django.db.models.loading import load_app
-from django.test import TestCase
+from django.test import TransactionTestCase
-class ProxyModelInheritanceTests(TestCase):
+class ProxyModelInheritanceTests(TransactionTestCase):
def setUp(self):
self.old_sys_path = sys.path