We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fabb270 commit 6535ea8Copy full SHA for 6535ea8
tests/sqlx/tests/jsonb_path_operators_tests.rs
@@ -113,10 +113,7 @@ async fn arrow_operator_returns_metadata_fields(pool: PgPool) -> Result<()> {
113
114
let result: serde_json::Value = sqlx::query_scalar(&sql).fetch_one(&pool).await?;
115
116
- assert!(
117
- result.is_object(),
118
- "-> operator should return JSONB object"
119
- );
+ assert!(result.is_object(), "-> operator should return JSONB object");
120
let obj = result
121
.as_object()
122
.expect("Result should be a JSONB object after is_object() check");
0 commit comments