Skip to content

Commit

Permalink
Attempt to fix execute error
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackYps committed Jun 4, 2024
1 parent fbfcd2a commit 5624be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async def test_data(request):

with open("tests/data/test-data.sql") as f:
async with db.acquire() as conn:
await conn.execute(f.read())
await conn.execute(f.read().replace(":", r"\:"))

await db.close()

Expand Down

0 comments on commit 5624be3

Please sign in to comment.