summaryrefslogtreecommitdiff
path: root/tests/regressiontests/multiple_database/tests.py
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-07-10 13:52:04 +0000
committerRamiro Morales <cramm0@gmail.com>2011-07-10 13:52:04 +0000
commit54b9c03d8005fd37f2677e5759de42e5d61ca046 (patch)
treef8f4c33b656982f360378ce886a9c776e0dad1f9 /tests/regressiontests/multiple_database/tests.py
parentee7cac0806a00e819955d0cf156e94a3cd24ddb8 (diff)
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
Diffstat (limited to 'tests/regressiontests/multiple_database/tests.py')
-rw-r--r--tests/regressiontests/multiple_database/tests.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/regressiontests/multiple_database/tests.py b/tests/regressiontests/multiple_database/tests.py
index 551a6772d6..02ee34f820 100644
--- a/tests/regressiontests/multiple_database/tests.py
+++ b/tests/regressiontests/multiple_database/tests.py
@@ -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'."