Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenzV committed Aug 21, 2024
1 parent 21611ff commit 9db0a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/visreg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ pub fn save_refs(name: &str, renderer: &Renderer, document: RenderedDocument) {
pixel_diff += 1;
}
}
(Some(actual), None) => {
(Some(_), None) => {
pixel_diff += 1;
}
(None, Some(expected)) => {
(None, Some(_)) => {
pixel_diff += 1;
}
_ => unreachable!(),
Expand Down

0 comments on commit 9db0a51

Please sign in to comment.