settings: Migrate test settings to modern postgres backend name.

This should have no effect; it's just
the missing remainder of 555d5b4dc6.
This commit is contained in:
Tim Abbott 2019-01-23 17:03:38 -08:00
parent d4cd789213
commit 8b1591f263
2 changed files with 2 additions and 2 deletions

View File

@ -6,5 +6,5 @@ DATABASES["default"] = {
"PASSWORD": LOCAL_DATABASE_PASSWORD,
"HOST": "localhost",
"SCHEMA": "zulip",
"ENGINE": "django.db.backends.postgresql_psycopg2",
"ENGINE": "django.db.backends.postgresql",
}

View File

@ -30,7 +30,7 @@ DATABASES["default"] = {
"PASSWORD": LOCAL_DATABASE_PASSWORD,
"HOST": "localhost",
"SCHEMA": "zulip",
"ENGINE": "django.db.backends.postgresql_psycopg2",
"ENGINE": "django.db.backends.postgresql",
"TEST_NAME": "django_zulip_tests",
"OPTIONS": {"connection_factory": TimeTrackingConnection},
}