Skip to content

Commit

Permalink
ugh fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
schell committed Jan 5, 2021
1 parent 9ce83dd commit 7c0a540
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/bevy_render/src/camera/visible_entities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ mod rendering_mask_tests {
// default masks match each other
assert!(RenderingMask::default().matches(&RenderingMask::default()));
// masks with differing groups do not match
assert_eq!(RenderingMask::group(0).matches(&RenderingMask::group(1)), false);
assert_eq!(
RenderingMask::group(0).matches(&RenderingMask::group(1)),
false
);
}
}

Expand Down

0 comments on commit 7c0a540

Please sign in to comment.