Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 committed Jun 24, 2024
1 parent 3205a37 commit 5078610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encodings/fastlanes/src/for/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ mod test {

let encoded = compressed.encoded().into_primitive().unwrap();
let encoded_bytes: &[u8] = encoded.maybe_null_slice::<u8>();
let unsigned: Vec<u8> = (0..u8::MAX).collect_vec();
let unsigned: Vec<u8> = (0..=u8::MAX).collect_vec();
assert_eq!(encoded_bytes, unsigned.as_slice());

let decompressed = compressed.array().clone().into_primitive().unwrap();
Expand Down

0 comments on commit 5078610

Please sign in to comment.