more ordering fixes

This commit is contained in:
2026-05-14 18:13:59 -04:00
parent 724a9e3e44
commit 86d49273bc

View File

@ -226,7 +226,10 @@ fn test_library_api() {
);
// 4. Validate Happy Path
let happy_drop = jspg_validate("source_schema", JsonB(json!({"type": "source_schema", "name": "Neo"})));
let happy_drop = jspg_validate(
"source_schema",
JsonB(json!({"type": "source_schema", "name": "Neo"})),
);
assert_eq!(
happy_drop.0,
json!({
@ -236,7 +239,10 @@ fn test_library_api() {
);
// 5. Validate Unhappy Path
let unhappy_drop = jspg_validate("source_schema", JsonB(json!({"type": "source_schema", "wrong": "data"})));
let unhappy_drop = jspg_validate(
"source_schema",
JsonB(json!({"type": "source_schema", "wrong": "data"})),
);
assert_eq!(
unhappy_drop.0,
json!({