From a967c75e92aa08704f11459e4597f6a24bc476c3 Mon Sep 17 00:00:00 2001 From: Chris Russell <8494645+chescock@users.noreply.github.com> Date: Wed, 6 Nov 2024 11:10:55 -0500 Subject: [PATCH] Enable EntityRef tests that now pass. (#16263) # Objective Re-enable some tests in `entity_ref.rs` that are marked as `#[ignore]`, but that pass after #14561. ## Solution Remove `#[ignore]` from those tests. --- crates/bevy_ecs/src/world/entity_ref.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/bevy_ecs/src/world/entity_ref.rs b/crates/bevy_ecs/src/world/entity_ref.rs index 7b8dc9465b..839833dc02 100644 --- a/crates/bevy_ecs/src/world/entity_ref.rs +++ b/crates/bevy_ecs/src/world/entity_ref.rs @@ -4036,7 +4036,6 @@ mod tests { } #[test] - #[ignore] // This should pass, but it currently fails due to limitations in our access model. fn ref_compatible_with_resource_mut() { fn borrow_system(_: Query, _: ResMut) {} @@ -4067,7 +4066,6 @@ mod tests { } #[test] - #[ignore] // This should pass, but it currently fails due to limitations in our access model. fn mut_compatible_with_resource() { fn borrow_mut_system(_: Res, _: Query) {} @@ -4075,7 +4073,6 @@ mod tests { } #[test] - #[ignore] // This should pass, but it currently fails due to limitations in our access model. fn mut_compatible_with_resource_mut() { fn borrow_mut_system(_: ResMut, _: Query) {}