summaryrefslogtreecommitdiff
path: root/django/test/utils.py
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-18 17:38:53 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-18 17:38:53 +0000
commitc681f4070c2095eae9635d13233e8d5fad5240f1 (patch)
tree616996b9bd21315df602bfc3b0b645f682118571 /django/test/utils.py
parentd261c1d000cfe05c6f3e290ca6b993606aed7f63 (diff)
Removed the mysql_old backend. It smells bad and has no friends.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/test/utils.py')
-rw-r--r--django/test/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/test/utils.py b/django/test/utils.py
index 41de932964..03f40a8df7 100644
--- a/django/test/utils.py
+++ b/django/test/utils.py
@@ -140,7 +140,6 @@ def create_test_db(verbosity=1, autoclobber=False):
'postgresql': get_postgresql_create_suffix,
'postgresql_psycopg2': get_postgresql_create_suffix,
'mysql': get_mysql_create_suffix,
- 'mysql_old': get_mysql_create_suffix,
}.get(settings.DATABASE_ENGINE, lambda: '')()
if settings.TEST_DATABASE_NAME:
TEST_DATABASE_NAME = settings.TEST_DATABASE_NAME