fix tests

This commit is contained in:
Louis Dureuil 2024-08-28 09:10:09 +02:00
parent 1ac008926b
commit 66bda2ce8a
No known key found for this signature in database
12 changed files with 24 additions and 10 deletions

View file

@ -5403,6 +5403,9 @@ mod tests {
),
prompt: PromptData {
template: "{{doc.doggo}}",
max_bytes: Some(
400,
),
},
},
user_provided: RoaringBitmap<[1, 2]>,
@ -5618,6 +5621,9 @@ mod tests {
),
prompt: PromptData {
template: "{% for field in fields %}{% if field.is_searchable and field.value != nil %}{{ field.name }}: {{ field.value }}\n{% endif %}{% endfor %}",
max_bytes: Some(
400,
),
},
},
user_provided: RoaringBitmap<[0]>,
@ -5658,6 +5664,9 @@ mod tests {
),
prompt: PromptData {
template: "{% for field in fields %}{% if field.is_searchable and field.value != nil %}{{ field.name }}: {{ field.value }}\n{% endif %}{% endfor %}",
max_bytes: Some(
400,
),
},
},
user_provided: RoaringBitmap<[]>,