Fixed a typo in the `multiple_database` tests. Thanks Jim Dalton.

Also, removed some unused imports.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16529 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Ramiro Morales 2011-07-10 13:52:04 +00:00
parent ee7cac0806
commit 54b9c03d80
1 changed files with 1 additions and 9 deletions

View File

@ -1,6 +1,5 @@
import datetime
import pickle
import sys
from StringIO import StringIO
from django.conf import settings
@ -8,17 +7,10 @@ from django.contrib.auth.models import User
from django.core import management
from django.db import connections, router, DEFAULT_DB_ALIAS
from django.db.models import signals
from django.db.utils import ConnectionRouter
from django.test import TestCase
from models import Book, Person, Pet, Review, UserProfile
try:
# we only have these models if the user is using multi-db, it's safe the
# run the tests without them though.
from models import Article, article_using
except ImportError:
pass
class QueryTestCase(TestCase):
multi_db = True
@ -1702,7 +1694,7 @@ class SignalTests(TestCase):
self.old_routers = router.routers
def tearDown(self):
router.routser = self.old_routers
router.routers = self.old_routers
def _write_to_other(self):
"Sends all writes to 'other'."