diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2010-09-13 05:08:21 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2010-09-13 05:08:21 +0000 |
| commit | 3d99526fc2b6b6d25d889ce206ea26c7036944b8 (patch) | |
| tree | 3f5a2942230fff17f70cd9e2d5eee54437104878 /tests/regressiontests/multiple_database/tests.py | |
| parent | 767cf13d7654b92ce398bb142a908b3e0c461564 (diff) | |
Fix a couple of typos in test names and descriptions.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/multiple_database/tests.py')
| -rw-r--r-- | tests/regressiontests/multiple_database/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/multiple_database/tests.py b/tests/regressiontests/multiple_database/tests.py index 7f66ea3bcf..c688a8c64e 100644 --- a/tests/regressiontests/multiple_database/tests.py +++ b/tests/regressiontests/multiple_database/tests.py @@ -24,7 +24,7 @@ class QueryTestCase(TestCase): multi_db = True def test_db_selection(self): - "Check that querysets will use the default databse by default" + "Check that querysets will use the default database by default" self.assertEquals(Book.objects.db, DEFAULT_DB_ALIAS) self.assertEquals(Book.objects.all().db, DEFAULT_DB_ALIAS) @@ -1221,7 +1221,7 @@ class RouterTestCase(TestCase): mark = Person.objects.using('default').create(pk=2, name="Mark Pilgrim") - # Now save back onto the usual databse. + # Now save back onto the usual database. # This simulates master/slave - the objects exist on both database, # but the _state.db is as it is for all other tests. pro.save(using='default') |
