Kaydet (Commit) 225a6ed2 authored tarafından Aymeric Augustin's avatar Aymeric Augustin

Fixed a test that was failing with PostGIS.

Fixed #21452 again.

Forward-port of 18d75e07 from stable/1.6.x.
üst 720c6d3a
......@@ -384,10 +384,10 @@ class PostgresNewConnectionTests(TestCase):
after setting the time zone when AUTOCOMMIT is False (#21452).
"""
databases = copy.deepcopy(settings.DATABASES)
databases[DEFAULT_DB_ALIAS]['AUTOCOMMIT'] = False
new_connections = ConnectionHandler(databases)
new_connection = new_connections[DEFAULT_DB_ALIAS]
try:
new_connection.settings_dict['AUTOCOMMIT'] = False
# Open a database connection.
new_connection.cursor()
self.assertFalse(new_connection.get_autocommit())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment