From 82076540020b910753d46d56d3e3fea7a1cb6613 Mon Sep 17 00:00:00 2001 From: Boxy Date: Fri, 24 Feb 2023 13:25:03 +0000 Subject: [PATCH] link to PR from tests Co-authored-by: James Liu --- crates/bevy_ecs/src/world/entity_ref.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/bevy_ecs/src/world/entity_ref.rs b/crates/bevy_ecs/src/world/entity_ref.rs index 12e47420fe7b0..0e1f540bfcd75 100644 --- a/crates/bevy_ecs/src/world/entity_ref.rs +++ b/crates/bevy_ecs/src/world/entity_ref.rs @@ -927,6 +927,7 @@ mod tests { assert!(entity.location() != old_location); } + // regression test for https://github.com/bevyengine/bevy/pull/7805 #[test] fn removing_sparse_updates_archetype_row() { #[derive(Component, PartialEq, Debug)] @@ -944,6 +945,7 @@ mod tests { assert_eq!(world.entity(e2).get::().unwrap(), &Dense(1)); } + // regression test for https://github.com/bevyengine/bevy/pull/7805 #[test] fn removing_dense_updates_table_row() { #[derive(Component, PartialEq, Debug)]