Commit 78a2719d authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Tweaked the skipping condition for the test introduced in r17128 so that it...

Tweaked the skipping condition for the test introduced in r17128 so that it works on non-PostgreSQL backends.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@17129 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 74b836ab
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -235,10 +235,9 @@ class PostgresNewConnectionTest(TestCase):
    #17062: PostgreSQL shouldn't roll back SET TIME ZONE, even if the first
    transaction is rolled back.
    """
    @unittest.skipUnless(connection.vendor == 'postgresql',
                         "Test valid only for PostgreSQL")
    @unittest.skipUnless(connection.isolation_level > 0,
                         "Test valid only if not using autocommit")
    @unittest.skipUnless(
        connection.vendor == 'postgresql' and connection.isolation_level > 0,
        "This test applies only to PostgreSQL without autocommit")
    def test_connect_and_rollback(self):
        new_connections = ConnectionHandler(settings.DATABASES)
        new_connection = new_connections[DEFAULT_DB_ALIAS]