chore: apply clippy fixes to e2e tests

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Sam Valladares 2026-01-27 01:23:33 -06:00
parent e06dd3d69a
commit ad1e1796f3
13 changed files with 27 additions and 40 deletions

View file

@ -306,7 +306,7 @@ mod tests {
let sim = service.cosine_similarity(&emb1, &emb2);
// Cosine similarity should be in [-1, 1]
assert!(sim >= -1.0 && sim <= 1.0);
assert!((-1.0..=1.0).contains(&sim));
}
#[test]