diff --git a/crates/bevy_ecs/src/schedule/executor/mod.rs b/crates/bevy_ecs/src/schedule/executor/mod.rs index c6260847772e0..f71a1ecec4ef8 100644 --- a/crates/bevy_ecs/src/schedule/executor/mod.rs +++ b/crates/bevy_ecs/src/schedule/executor/mod.rs @@ -202,7 +202,7 @@ mod tests { #[derive(Default, Resource)] struct ExecTracker(Vec); - /// Regression test: https://github.com/bevyengine/bevy/pull/15606 + /// Regression test: #[test] fn skip_on_first_system() { for executor in EXECUTORS { @@ -223,7 +223,7 @@ mod tests { assert_eq!(world.resource::().0, &[]); } - /// Regression test: https://github.com/bevyengine/bevy/pull/15606 + /// Regression test: #[test] fn skip_on_second_system() { for executor in EXECUTORS { @@ -244,7 +244,7 @@ mod tests { assert_eq!(world.resource::().0, &[0]); } - /// Regression test: https://github.com/bevyengine/bevy/pull/15606 + /// Regression test: #[test] fn run_full_combined_system() { for executor in EXECUTORS {