Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration/dbapi/async/V2/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def service_account_no_user(
s_id = (await cursor.fetchone())[0]
# Wrap in secret to avoid leaking the key in the logs
yield s_id, Secret(key)
await cursor.execute(f"DROP SERVICE ACCOUNT {sa_account_name}")
await cursor.execute(f'DROP SERVICE ACCOUNT "{sa_account_name}"')


@fixture
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/dbapi/sync/V2/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def service_account_no_user(
s_id = cursor.fetchone()[0]
# Wrap in secret to avoid leaking the key in the logs
yield s_id, Secret(key)
cursor.execute(f"DROP SERVICE ACCOUNT {sa_account_name}")
cursor.execute(f'DROP SERVICE ACCOUNT "{sa_account_name}"')


@fixture
Expand Down