This commit is contained in:
2025-05-25 06:30:48 +04:00
parent 91ba6001cb
commit a7fb704627
6 changed files with 18 additions and 19 deletions

View File

@@ -27,7 +27,7 @@ struct TestPerson {
}
}
}
encoded := schema_to_structs(schema)!
encoded := schema_to_structs(schema)
assert encoded.len == 1
assert encoded[0].trim_space() == struct_str.trim_space()
}
@@ -60,7 +60,7 @@ struct TestPerson {
}
}
}
encoded := schema_to_structs(schema)!
encoded := schema_to_structs(schema)
assert encoded.len == 1
assert encoded[0].trim_space() == struct_str.trim_space()
}
@@ -97,6 +97,6 @@ fn test_schema_to_structs_recursive() ! {
}
}
}
encoded := schema_to_structs(schema)!
encoded := schema_to_structs(schema)
log.debug(encoded.str())
}