From b74e6c35570cc8272a678233fb52acd68a4bd750 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 25 Mar 2010 13:15:13 +0000 Subject: [PATCH] [1.1.X] Fixed #12286 -- Modified the test case added in r12828 so that it passes under Postgres. Backport of r12846 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12847 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/proxy_model_inheritance/tests.py | 4 ++-- 1 file 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