Skip to content

Commit ef8d351

Browse files
committed
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
1 parent 04aa8a0 commit ef8d351

File tree

1 file changed

+2
-2
lines changed
  • tests/modeltests/proxy_model_inheritance

1 file changed

+2
-2
lines changed

tests/modeltests/proxy_model_inheritance/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
from django.conf import settings, Settings
1313
from django.core.management import call_command
1414
from django.db.models.loading import load_app
15-
from django.test import TestCase
15+
from django.test import TransactionTestCase
1616

17-
class ProxyModelInheritanceTests(TestCase):
17+
class ProxyModelInheritanceTests(TransactionTestCase):
1818

1919
def setUp(self):
2020
self.old_sys_path = sys.path

0 commit comments

Comments
 (0)