From f910d23fb2850ba82e5202e849e456ba58fd1d76 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Thu, 16 Jul 2026 17:18:06 +0200 Subject: [PATCH] fix(proto): drop the constant assertion clippy rejects (CI parity) Co-Authored-By: Claude Fable 5 --- crates/pf-driver-proto/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/pf-driver-proto/src/lib.rs b/crates/pf-driver-proto/src/lib.rs index 56cb18de..4f7e2e1a 100644 --- a/crates/pf-driver-proto/src/lib.rs +++ b/crates/pf-driver-proto/src/lib.rs @@ -949,7 +949,6 @@ mod tests { // The compat window: v4 is additive over v3, so the host floor stays one below. assert_eq!(PROTOCOL_VERSION, 4); assert_eq!(MIN_DRIVER_PROTOCOL_VERSION, 3); - assert!(MIN_DRIVER_PROTOCOL_VERSION <= PROTOCOL_VERSION); } #[test]