From 86d49273bc97ee726d07e272069a469e70541283 Mon Sep 17 00:00:00 2001 From: Alex Groleau Date: Thu, 14 May 2026 18:13:59 -0400 Subject: [PATCH] more ordering fixes --- src/tests/mod.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/tests/mod.rs b/src/tests/mod.rs index 8c2501a..a02c0a3 100644 --- a/src/tests/mod.rs +++ b/src/tests/mod.rs @@ -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!({