Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jfldde committed Oct 29, 2024
1 parent 022bd1a commit 8c958ce
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/test_case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ impl<T: TestCase> TestCaseRunner<T> {
match result {
Ok(Ok(())) => Ok(()),
Ok(Err(e)) => Err(e),
Err(panic_error) => {
panic::resume_unwind(panic_error)
}
Err(panic_error) => panic::resume_unwind(panic_error),
}
}

Expand Down

0 comments on commit 8c958ce

Please sign in to comment.