Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 2aae100

Browse files
Linting
1 parent 0574edf commit 2aae100

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test_databases.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -705,11 +705,9 @@ async def test_database_url_interface(database_url):
705705
@async_adapter
706706
async def test_concurrent_access_on_single_connection(database_url):
707707
async with Database(database_url, force_rollback=True) as database:
708+
708709
async def db_lookup():
709710
if str(database_url).startswith("postgresql"):
710711
await database.fetch_one("SELECT pg_sleep(1)")
711712

712-
await asyncio.gather(
713-
db_lookup(),
714-
db_lookup(),
715-
)
713+
await asyncio.gather(db_lookup(), db_lookup())

0 commit comments

Comments
 (0)