1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-04 00:54:07 +02:00

clippy fixes

This commit is contained in:
Robin Appelman 2024-04-03 19:47:06 +02:00
commit 2fe6af6224
2 changed files with 3 additions and 3 deletions

View file

@ -241,5 +241,5 @@ fn test_write_last_slice() {
let mut read = BitReadStream::from(BitReadBuffer::new(&data[..], LittleEndian));
assert_eq!(0b1000, read.read_int::<u8>(4).unwrap());
assert_eq!(true, read.read_bool().unwrap());
assert!(read.read_bool().unwrap());
}