fix(agent): update e2e_tests.rs call site for search_with_metrics's new vectors_flat parameter

Missed in the INT-16 flat-embedding-buffer commit — this integration
test call site lives under tests/, outside the src/ tree that was
grepped for callers.
This commit is contained in:
ClawHDF5 Coding Agent
2026-08-17 01:02:09 +00:00
parent 3a30327f35
commit f23363cde5
+2
View File
@@ -1144,9 +1144,11 @@ fn test_strategy_reports_backend() {
let tombstones = vec![0u8; n]; let tombstones = vec![0u8; n];
let query = vectors[0].clone(); let query = vectors[0].clone();
let flat: Vec<f32> = vectors.iter().flatten().copied().collect();
let (_, metrics) = strategy::search_with_metrics( let (_, metrics) = strategy::search_with_metrics(
&query, &query,
&vectors, &vectors,
&flat,
&norms, &norms,
&tombstones, &tombstones,
5, 5,