Skip to content

Commit 8c958ce

Browse files
committed
Fmt
1 parent 022bd1a commit 8c958ce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test_case.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,7 @@ impl<T: TestCase> TestCaseRunner<T> {
112112
match result {
113113
Ok(Ok(())) => Ok(()),
114114
Ok(Err(e)) => Err(e),
115-
Err(panic_error) => {
116-
panic::resume_unwind(panic_error)
117-
}
115+
Err(panic_error) => panic::resume_unwind(panic_error),
118116
}
119117
}
120118

0 commit comments

Comments
 (0)