From 720c6d3a44f5a723854e5eda4e963155b136582f Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 12 Jan 2014 21:13:32 +0100 Subject: [PATCH] Restored a test broken by overzealous PEP8 cleanup --- tests/backends/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/backends/tests.py b/tests/backends/tests.py index 611aa2cb6d..bb785a22de 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -388,6 +388,8 @@ class PostgresNewConnectionTests(TestCase): 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()) finally: new_connection.close()