Skip to content

Commit

Permalink
fix: update json arg test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacek-prisma committed Dec 16, 2024
1 parent 7e51b2a commit 8e88a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query-engine/driver-adapters/src/conversion/sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mod test {
),
(
ValueType::Json(Some(serde_json::json!({"a": 1}))),
JSArg::Value(serde_json::json!({"a": 1})),
JSArg::Value(Value::String("{\"a\":1}".to_string())),
),
(
ValueType::Json(None),
Expand Down

0 comments on commit 8e88a75

Please sign in to comment.