diff --git a/django/db/backends/creation.py b/django/db/backends/creation.py index b6379df4c1..3ba8922a31 100644 --- a/django/db/backends/creation.py +++ b/django/db/backends/creation.py @@ -374,7 +374,7 @@ class BaseDatabaseCreation(object): def _get_test_db_name(self): """ - Internal implementation - returns the name of the test DB that wll be + Internal implementation - returns the name of the test DB that will be created. Only useful when called from create_test_db() and _create_test_db() and when no external munging is done with the 'NAME' or 'TEST_NAME' settings. diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index 8a4458b310..bda70397c2 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -43,7 +43,7 @@ class DatabaseCreation(BaseDatabaseCreation): super(DatabaseCreation, self).__init__(connection) def _create_test_db(self, verbosity=1, autoclobber=False): - TEST_NAME = self._get_test_db_name() + TEST_NAME = self._test_database_name() TEST_USER = self._test_database_user() TEST_PASSWD = self._test_database_passwd() TEST_TBLSPACE = self._test_database_tblspace() @@ -201,7 +201,7 @@ class DatabaseCreation(BaseDatabaseCreation): sys.stderr.write("Failed (%s)\n" % (err)) raise - def _get_test_db_name(self): + def _test_database_name(self): name = TEST_DATABASE_PREFIX + self.connection.settings_dict['NAME'] try: if self.connection.settings_dict['TEST_NAME']: @@ -251,3 +251,11 @@ class DatabaseCreation(BaseDatabaseCreation): except KeyError: pass return name + + def _get_test_db_name(self): + """ + We need to return the 'production' DB name to get the test DB creation + machinery to work. This isn't a great deal in this case because DB + names as handled by Django haven't real counterparts in Oracle. + """ + return self.connection.settings_dict['NAME']