From dfacc483b575eb46093c883966b1829c2d2f2e7e Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 3 Apr 2014 02:28:02 +0100 Subject: [PATCH] Dropped unneeded pass in test --- tests/test_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_connection.py b/tests/test_connection.py index b2c51977..a58d8eb6 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -260,7 +260,7 @@ class ConnectionTests(ConnectingTestCase): c = SubConnection("dbname=thereisnosuchdatabasemate password=foobar") self.assert_(c.closed, "connection failed so it must be closed") self.assert_('foobar' not in c.dsn, "password was not obscured") - pass + class IsolationLevelsTestCase(ConnectingTestCase):