Skip to content

Commit

Permalink
Update tests/system/test_asyncpg_connection.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jack Wotherspoon <[email protected]>
  • Loading branch information
enocom and jackwotherspoon authored Jan 11, 2024
1 parent d2eb0dd commit f5843a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/system/test_asyncpg_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,4 @@ async def getconn() -> asyncpg.Connection:
)
async with pool.connect() as conn:
res = (await conn.execute(sqlalchemy.text("SELECT 1"))).fetchone()
res = res[0]
assert res == 1
assert res[0] == 1

0 comments on commit f5843a7

Please sign in to comment.