Skip to content

Commit 29239cb

Browse files
committed
conform to pep8
1 parent d5f7b4c commit 29239cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/sa/test_sa_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,8 @@ def test_raw_select_with_wildcard(self):
294294
@asyncio.coroutine
295295
def go():
296296
conn = yield from self.connect()
297-
yield from conn.execute('SELECT * FROM sa_tbl WHERE name LIKE "%test%"')
297+
yield from conn.execute(
298+
'SELECT * FROM sa_tbl WHERE name LIKE "%test%"')
298299
self.loop.run_until_complete(go())
299300

300301
def test_delete(self):

0 commit comments

Comments
 (0)