summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-02-19 14:22:57 +0000
committerRamiro Morales <cramm0@gmail.com>2011-02-19 14:22:57 +0000
commit3202d2abbc845cf69ba16a14002656b608aa24c4 (patch)
tree6646281e87face31bf3a4d8adfe15d754f68422b
parent909ee62563f5c9ff7f507028f19ee291a134ea30 (diff)
[1.2.X] Fixed #15327 -- Modified the Oracle test database signature method to allow for the case where TEST_USER is unspecified. Thanks to depaolim for the report.
Backport of [15568] git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15585 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/backends/oracle/creation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py
index fd02ca07ba..db64912a13 100644
--- a/django/db/backends/oracle/creation.py
+++ b/django/db/backends/oracle/creation.py
@@ -121,7 +121,7 @@ class DatabaseCreation(BaseDatabaseCreation):
settings_dict['PORT'],
settings_dict['ENGINE'],
settings_dict['NAME'],
- settings_dict['TEST_USER'],
+ self._test_database_user(),
)
def _destroy_test_db(self, test_database_name, verbosity=1):