Skip to content

Commit

Permalink
Fix asyncpg breadcrumb serialization (#3809)
Browse files Browse the repository at this point in the history
  • Loading branch information
sentrivana authored Nov 19, 2024
1 parent 9a37fca commit cae5a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integrations/asyncpg/test_asyncpg.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def test_record_params(sentry_init, capture_events) -> None:
{
"category": "query",
"data": {
"db.params": "('Bob', 'secret_pw', datetime.date(1984, 3, 1))",
"db.params": ["Bob", "secret_pw", "datetime.date(1984, 3, 1)"],
"db.paramstyle": "format",
},
"message": "INSERT INTO users(name, password, dob) VALUES($1, $2, $3)",
Expand Down

0 comments on commit cae5a32

Please sign in to comment.