fix: tests

This commit is contained in:
0xMochan 2025-04-07 17:14:52 -07:00
parent d618d1a435
commit 4b38294264
1 changed files with 4 additions and 4 deletions

View File

@ -557,13 +557,13 @@ mod tests {
content: OneOrMany::many(vec![ content: OneOrMany::many(vec![
UserContent::document( UserContent::document(
"<file id: doc1>\nDocument 1 text.\n</file>\n".to_string(), "<file id: doc1>\nDocument 1 text.\n</file>\n".to_string(),
None, Some(ContentFormat::String),
None, Some(DocumentMediaType::TXT),
), ),
UserContent::document( UserContent::document(
"<file id: doc2>\nDocument 2 text.\n</file>\n".to_string(), "<file id: doc2>\nDocument 2 text.\n</file>\n".to_string(),
None, Some(ContentFormat::String),
None, Some(DocumentMediaType::TXT),
), ),
]) ])
.expect("There will be at least one document"), .expect("There will be at least one document"),