From 50567f04905d8fc11f4066dc3e5c81d583cdfc92 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 21 Jun 2026 01:47:25 +0000 Subject: [PATCH] Fix WeakPoint initializer in scan_bench: add missing test_context benches/scan_bench.rs built a WeakPoint literal without the `test_context` field added to the struct in v2.5.5, which broke `cargo bench` (run by .github/workflows/e2e.yml) and any `cargo check --all-targets`. Add `test_context: None`. Verified with `cargo check --benches` (Finished, clean). Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_0196movYBRwNw8vkLRaaFoTu --- benches/scan_bench.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/benches/scan_bench.rs b/benches/scan_bench.rs index bcd4c44..e451c35 100644 --- a/benches/scan_bench.rs +++ b/benches/scan_bench.rs @@ -203,6 +203,7 @@ fn bench_location_extraction(c: &mut Criterion) { description: "test".to_string(), recommended_attack: vec![], suppressed: false, + test_context: None, }; 100 ];