Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zachschuermann committed Oct 23, 2024
1 parent 630c694 commit f5530f9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions kernel/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,7 @@ mod tests {
if matches!(
&*source,
Error::Arrow(arrow_schema::ArrowError::SchemaError(_))
) =>
{

}
) => {}
_ => panic!("expected arrow schema error error, got {:?}", e),
});

Expand Down Expand Up @@ -451,10 +448,7 @@ mod tests {
if matches!(
&*source,
Error::Arrow(arrow_schema::ArrowError::InvalidArgumentError(_))
) =>
{

}
) => {}
_ => panic!("expected arrow invalid arg error, got {:?}", e),
});

Expand Down

0 comments on commit f5530f9

Please sign in to comment.