From e4e499b79404a75b9d4e7f17bfe07fd4ee3bbb72 Mon Sep 17 00:00:00 2001 From: Jou Ho Date: Fri, 10 Jan 2025 19:30:27 +0000 Subject: [PATCH] more clippy fix --- quic/s2n-quic-core/src/stream/testing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quic/s2n-quic-core/src/stream/testing.rs b/quic/s2n-quic-core/src/stream/testing.rs index ca756548c..e8a1c78bd 100644 --- a/quic/s2n-quic-core/src/stream/testing.rs +++ b/quic/s2n-quic-core/src/stream/testing.rs @@ -10,7 +10,7 @@ use bytes::Bytes; use bolero_generator::prelude::*; static DATA: Bytes = { - const INNER: [u8; DATA_LEN] = { + static INNER: [u8; DATA_LEN] = { let mut data = [0; DATA_LEN]; let mut idx = 0; while idx < DATA_LEN {