cargo fmt --all

This commit is contained in:
Chris Russell 2025-07-03 20:38:44 -04:00
parent 2cf97b7ff9
commit c15e5a85fd

View File

@ -449,7 +449,11 @@ mod tests {
}
// This system should be skipped when run due to no matching entity
fn pipe_in(_input: In<u8>, _single: When<Single<&TestComponent>>, mut counter: ResMut<Counter>) {
fn pipe_in(
_input: In<u8>,
_single: When<Single<&TestComponent>>,
mut counter: ResMut<Counter>,
) {
counter.0 += 1;
}