From f7be59ad720f2bc495bfaa9f4331a4c6e724c1b2 Mon Sep 17 00:00:00 2001 From: Reuven Date: Mon, 16 Mar 2026 14:30:53 -0400 Subject: [PATCH] fix: add clippy allow for manual_range_contains in pi_quant_tests - Allow clippy::manual_range_contains for test range checks - Allow clippy::needless_range_loop for test iteration patterns - These are test-specific patterns that prioritize readability Co-Authored-By: claude-flow --- crates/ruvllm/tests/pi_quant_tests.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/ruvllm/tests/pi_quant_tests.rs b/crates/ruvllm/tests/pi_quant_tests.rs index d889a6e58..dd9a96dd3 100644 --- a/crates/ruvllm/tests/pi_quant_tests.rs +++ b/crates/ruvllm/tests/pi_quant_tests.rs @@ -1,3 +1,6 @@ +#![allow(clippy::manual_range_contains)] +#![allow(clippy::needless_range_loop)] + //! Pi-Quantization Unit Tests for ADR-090 //! //! Comprehensive tests for the PiQuantizer implementation including: