Ticket #14276: spelling.diff

File spelling.diff, 636 bytes (added by Andrii Kurinnyi, 14 years ago)
  • tests/regressiontests/multiple_database/tests.py

    diff --git a/tests/regressiontests/multiple_database/tests.py b/tests/regressiontests/multiple_database/tests.py
    index 7f66ea3..e82178e 100644
    a b class QueryTestCase(TestCase):  
    2424    multi_db = True
    2525
    2626    def test_db_selection(self):
    27         "Check that querysets will use the default databse by default"
     27        "Check that querysets will use the default database by default"
    2828        self.assertEquals(Book.objects.db, DEFAULT_DB_ALIAS)
    2929        self.assertEquals(Book.objects.all().db, DEFAULT_DB_ALIAS)
    3030
Back to Top