Fixed #17786 -- Exception when running the tests under Oracle, during the destruction of the test database.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17599 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Aymeric Augustin 2012-02-28 09:50:18 +00:00
parent abf2d4295f
commit 4b641b78fa
1 changed files with 5 additions and 1 deletions

View File

@ -40,8 +40,12 @@ class DatabaseCreation(BaseDatabaseCreation):
'URLField': 'VARCHAR2(%(max_length)s)',
}
# This dictionary stores the original values of user and passwd, which are
# changed during the tests. It's stored at the class level because the
# test database is created and destroyed by different connections (#17786).
remember = {}
def __init__(self, connection):
self.remember = {}
super(DatabaseCreation, self).__init__(connection)
def _create_test_db(self, verbosity=1, autoclobber=False):