Skip to content

Commit

Permalink
send_events is ambiguous_with_all (#15629)
Browse files Browse the repository at this point in the history
# Objective

> Alice 🌹 — Today at 3:43 PM
bevy_dev_tools::ci_testing::systems::send_events
This system should be marked as ambiguous with everything I think

## Solution

- Mark it as `ambiguous_with_all`
  • Loading branch information
IceSentry authored Oct 3, 2024
1 parent 528ca4f commit 0628255
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/bevy_dev_tools/src/ci_testing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ impl Plugin for CiTestingPlugin {
systems::send_events
.before(trigger_screenshots)
.before(bevy_window::close_when_requested)
.in_set(SendEvents),
.in_set(SendEvents)
.ambiguous_with_all(),
);

// The offending system does not exist in the wasm32 target.
Expand Down

0 comments on commit 0628255

Please sign in to comment.