Skip to content

Commit

Permalink
fix size check merge
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft committed Oct 17, 2024
1 parent 6bc9a1c commit fb23baf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dc/s2n-quic-dc/src/path/secret/map/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit fb23baf

Please sign in to comment.