Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
JayKickliter committed Jun 26, 2023
1 parent 8f74c13 commit c3accec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/disk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ mod tests {

let mut disktree = DiskTree::from_reader(std::io::Cursor::new(fake_file));

let cell = Cell::try_from(0x85283473fffffff).unwrap();
for test_val in 0_u32..100 {
let cell = Cell::try_from(0x85283473fffffff).unwrap();
assert_eq!(
test_val,
disktree
Expand All @@ -123,8 +123,8 @@ mod tests {
}
file.rewind().unwrap();
let mut disktree = DiskTree::from_reader(file);
let cell = Cell::try_from(0x85283473fffffff).unwrap();
for test_val in 0_u32..100 {
let cell = Cell::try_from(0x85283473fffffff).unwrap();
assert_eq!(
test_val,
disktree
Expand Down

0 comments on commit c3accec

Please sign in to comment.