Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniaczQ committed Oct 13, 2024
1 parent 0bf1250 commit 3b0cb96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/bevy_ecs/src/schedule/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ mod tests {
#[derive(Default, Resource)]
struct ExecTracker(Vec<u32>);

/// Regression test: https://github.com/bevyengine/bevy/pull/15606
/// Regression test: <https://github.com/bevyengine/bevy/pull/15606>
#[test]
fn skip_on_first_system() {
for executor in EXECUTORS {
Expand All @@ -223,7 +223,7 @@ mod tests {
assert_eq!(world.resource::<ExecTracker>().0, &[]);
}

/// Regression test: https://github.com/bevyengine/bevy/pull/15606
/// Regression test: <https://github.com/bevyengine/bevy/pull/15606>
#[test]
fn skip_on_second_system() {
for executor in EXECUTORS {
Expand All @@ -244,7 +244,7 @@ mod tests {
assert_eq!(world.resource::<ExecTracker>().0, &[0]);
}

/// Regression test: https://github.com/bevyengine/bevy/pull/15606
/// Regression test: <https://github.com/bevyengine/bevy/pull/15606>
#[test]
fn run_full_combined_system() {
for executor in EXECUTORS {
Expand Down

0 comments on commit 3b0cb96

Please sign in to comment.