mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed an unnecessary use of TransactionTestCase
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16341 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -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() | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user