mirror of
https://github.com/sprockets/sprockets-postgres.git
synced 2024-12-28 19:29:21 +00:00
Fix indentation, duplicate test name
This commit is contained in:
parent
a1736bccae
commit
aaf0548bdf
2 changed files with 3 additions and 3 deletions
2
tests.py
2
tests.py
|
@ -426,7 +426,7 @@ class RequestHandlerMixinTestCase(TestCase):
|
||||||
aiopg.connection.Connection.cursor = original
|
aiopg.connection.Connection.cursor = original
|
||||||
|
|
||||||
@mock.patch('aiopg.connection.Connection.cursor')
|
@mock.patch('aiopg.connection.Connection.cursor')
|
||||||
def test_postgres_cursor_raises(self, cursor):
|
def test_postgres_cursor_raises_on_failed_reconnect(self, cursor):
|
||||||
cursor.side_effect = psycopg2.OperationalError()
|
cursor.side_effect = psycopg2.OperationalError()
|
||||||
with mock.patch.object(self.app, '_postgres_connect') as connect:
|
with mock.patch.object(self.app, '_postgres_connect') as connect:
|
||||||
connect.return_value = False
|
connect.return_value = False
|
||||||
|
|
Loading…
Reference in a new issue