Compare commits

...

2 Commits

Author SHA1 Message Date
4874c09fb5 version: 1.0.144 2026-05-14 18:14:10 -04:00
86d49273bc more ordering fixes 2026-05-14 18:13:59 -04:00
2 changed files with 9 additions and 3 deletions

View File

@ -226,7 +226,10 @@ fn test_library_api() {
); );
// 4. Validate Happy Path // 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!( assert_eq!(
happy_drop.0, happy_drop.0,
json!({ json!({
@ -236,7 +239,10 @@ fn test_library_api() {
); );
// 5. Validate Unhappy Path // 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!( assert_eq!(
unhappy_drop.0, unhappy_drop.0,
json!({ json!({

View File

@ -1 +1 @@
1.0.143 1.0.144