Skip to content

Commit

Permalink
Use repo's cargo fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
kskalski committed Aug 21, 2023
1 parent 5bcd0d6 commit b3cbf7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli/src/parse/blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ mod tests {
panic!("Unexpected shape")
};
if expected_block_numbers != block_numbers {
return false;
return false
}
}
BlockChunk::Range(expected_range_start, expected_range_end) => {
Expand All @@ -395,7 +395,7 @@ mod tests {
panic!("Unexpected shape")
};
if expected_range_start != range_start || expected_range_end != range_end {
return false;
return false
}
}
}
Expand Down

0 comments on commit b3cbf7e

Please sign in to comment.