summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2011-06-08 23:09:32 +0000
committerLuke Plant <L.Plant.98@cantab.net>2011-06-08 23:09:32 +0000
commitcb2c669d147c9f14ec0cc4ffa9f2633e6add6fac (patch)
tree94a50a68880350d1094d743a7ac9f017b762af28
parent207e3ed9d58fabe68477aa62f7ef41464f1761e9 (diff)
Fixed an unnecessary use of TransactionTestCase
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16341 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/regressiontests/admin_changelist/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/admin_changelist/tests.py b/tests/regressiontests/admin_changelist/tests.py
index bc7fce2025..709fa766dd 100644
--- a/tests/regressiontests/admin_changelist/tests.py
+++ b/tests/regressiontests/admin_changelist/tests.py
@@ -3,7 +3,7 @@ from django.contrib.admin.options import IncorrectLookupParameters
from django.contrib.admin.views.main import ChangeList, SEARCH_VAR
from django.core.paginator import Paginator
from django.template import Context, Template
-from django.test import TransactionTestCase
+from django.test import TestCase
from django.test.client import RequestFactory
from django.contrib.auth.models import User
@@ -11,7 +11,7 @@ from models import (Child, Parent, Genre, Band, Musician, Group, Quartet,
Membership, ChordsMusician, ChordsBand, Invitation)
-class ChangeListTests(TransactionTestCase):
+class ChangeListTests(TestCase):
def setUp(self):
self.factory = RequestFactory()