From 98e05ccde440cc9b768952cc10bc8285f4924e1f Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Sun, 22 Oct 2017 17:30:42 +0200 Subject: Fixed #32233 -- Cleaned-up duplicate connection functionality. --- tests/db_utils/tests.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'tests/db_utils') diff --git a/tests/db_utils/tests.py b/tests/db_utils/tests.py index ca40d4d1e6..7612c6f2fa 100644 --- a/tests/db_utils/tests.py +++ b/tests/db_utils/tests.py @@ -3,10 +3,9 @@ import unittest from django.core.exceptions import ImproperlyConfigured from django.db import DEFAULT_DB_ALIAS, ProgrammingError, connection -from django.db.utils import ( - ConnectionDoesNotExist, ConnectionHandler, load_backend, -) +from django.db.utils import ConnectionHandler, load_backend from django.test import SimpleTestCase, TestCase +from django.utils.connection import ConnectionDoesNotExist class ConnectionHandlerTests(SimpleTestCase): @@ -41,7 +40,7 @@ class ConnectionHandlerTests(SimpleTestCase): conns['other'].ensure_connection() def test_nonexistent_alias(self): - msg = "The connection nonexistent doesn't exist" + msg = "The connection 'nonexistent' doesn't exist." conns = ConnectionHandler({ DEFAULT_DB_ALIAS: {'ENGINE': 'django.db.backends.dummy'}, }) @@ -49,7 +48,7 @@ class ConnectionHandlerTests(SimpleTestCase): conns['nonexistent'] def test_ensure_defaults_nonexistent_alias(self): - msg = "The connection nonexistent doesn't exist" + msg = "The connection 'nonexistent' doesn't exist." conns = ConnectionHandler({ DEFAULT_DB_ALIAS: {'ENGINE': 'django.db.backends.dummy'}, }) @@ -57,7 +56,7 @@ class ConnectionHandlerTests(SimpleTestCase): conns.ensure_defaults('nonexistent') def test_prepare_test_settings_nonexistent_alias(self): - msg = "The connection nonexistent doesn't exist" + msg = "The connection 'nonexistent' doesn't exist." conns = ConnectionHandler({ DEFAULT_DB_ALIAS: {'ENGINE': 'django.db.backends.dummy'}, }) -- cgit v1.3