Skip to content

Commit 6535ea8

Browse files
committed
style: fix formatting in metadata test
1 parent fabb270 commit 6535ea8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/sqlx/tests/jsonb_path_operators_tests.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@ async fn arrow_operator_returns_metadata_fields(pool: PgPool) -> Result<()> {
113113

114114
let result: serde_json::Value = sqlx::query_scalar(&sql).fetch_one(&pool).await?;
115115

116-
assert!(
117-
result.is_object(),
118-
"-> operator should return JSONB object"
119-
);
116+
assert!(result.is_object(), "-> operator should return JSONB object");
120117
let obj = result
121118
.as_object()
122119
.expect("Result should be a JSONB object after is_object() check");

0 commit comments

Comments
 (0)