Commit 3202d2ab authored by Ramiro Morales's avatar Ramiro Morales
Browse files

[1.2.X] Fixed #15327 -- Modified the Oracle test database signature method to...

[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
parent 909ee625
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):