Skip to content

Commit

Permalink
Fixed tests because of added symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
pverscha committed Sep 19, 2024
1 parent 5094fbf commit 9a50fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text-compression/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ mod tests {
let mut reader = std::io::BufReader::new(&data[..]);
let compressed_text = load_compressed_text(&mut reader).unwrap();

for (i, c) in "CDEFGHIKLM".chars().enumerate() {
for (i, c) in "BCDEFGHIKL".chars().enumerate() {
assert_eq!(compressed_text.get(i), c as u8);
}
}
Expand Down

0 comments on commit 9a50fca

Please sign in to comment.