From fb23baf3b7573b0e82caa6d119b1df4a6f5e372d Mon Sep 17 00:00:00 2001 From: Cameron Bytheway Date: Thu, 17 Oct 2024 13:42:34 -0600 Subject: [PATCH] fix size check merge --- dc/s2n-quic-dc/src/path/secret/map/test.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dc/s2n-quic-dc/src/path/secret/map/test.rs b/dc/s2n-quic-dc/src/path/secret/map/test.rs index b3fecaa2d..b0a8fa41b 100644 --- a/dc/s2n-quic-dc/src/path/secret/map/test.rs +++ b/dc/s2n-quic-dc/src/path/secret/map/test.rs @@ -331,10 +331,9 @@ fn entry_size() { should_check &= cfg!(target_pointer_width = "64"); should_check &= cfg!(target_os = "linux"); should_check &= std::env::var("S2N_QUIC_RUN_VERSION_SPECIFIC_TESTS").is_ok(); - should_check &= std::env::var("S2N_QUIC_PLATFORM_FEATURES_OVERRIDE").is_err(); // This gates to running only on specific GHA to reduce false positives. if should_check { - assert_eq!(fake_entry(0).size(), 270); + assert_eq!(fake_entry(0).size(), 238); } }