We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a19a1e commit ac08646Copy full SHA for ac08646
src/event/format/json.rs
@@ -333,15 +333,15 @@ mod tests {
333
334
#[test]
335
fn time_parition_not_in_json() {
336
- let json = json!({"timestamp": "2025-05-15T15:30:00Z"});
+ let json = json!({"hello": "world!"});
337
let parsed = get_parsed_timestamp(&json, "timestamp");
338
339
assert!(parsed.is_err());
340
}
341
342
343
fn time_parition_not_parseable_as_datetime() {
344
+ let json = json!({"timestamp": "not time"});
345
346
347
0 commit comments