This commit is contained in:
2025-06-10 16:01:58 -04:00
parent d37aadb0dd
commit 7f66a4a35a
2 changed files with 1 additions and 3 deletions

View File

@ -320,8 +320,6 @@ fn enhance_error_message(message: &str) -> (String, String) {
}
}
// Extract a better format message
fn extract_format_message(message: &str) -> String {
if message.contains("date-time") {

View File

@ -538,4 +538,4 @@ fn test_auto_strict_validation() {
let result_permissive = validate_json_schema(schema_id_permissive, jsonb(instance_with_extra));
assert_success_with_json!(result_permissive, "Instance with extra property should pass when additionalProperties is explicitly true, even with strict=true");
}
}