Skip to content

Commit

Permalink
better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminBrienen committed Oct 26, 2024
1 parent 793ef13 commit 85a2026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_ecs/src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1636,9 +1636,9 @@ mod tests {
assert_is_system(static_system_param);
assert_is_system(
exclusive_in_out::<(), Result<(), std::io::Error>>.map(|system| {
system.map_err(|err| {
if let Err(err) = system {
bevy_utils::tracing::error!("{err}");
})
}
}),
);
assert_is_system(exclusive_with_state);
Expand Down

0 comments on commit 85a2026

Please sign in to comment.