Skip to content

Commit cae5a32

Browse files
authored
Fix asyncpg breadcrumb serialization (#3809)
1 parent 9a37fca commit cae5a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integrations/asyncpg/test_asyncpg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ async def test_record_params(sentry_init, capture_events) -> None:
226226
{
227227
"category": "query",
228228
"data": {
229-
"db.params": "('Bob', 'secret_pw', datetime.date(1984, 3, 1))",
229+
"db.params": ["Bob", "secret_pw", "datetime.date(1984, 3, 1)"],
230230
"db.paramstyle": "format",
231231
},
232232
"message": "INSERT INTO users(name, password, dob) VALUES($1, $2, $3)",

0 commit comments

Comments
 (0)