Skip to content

Commit 0628255

Browse files
authored
send_events is ambiguous_with_all (#15629)
# 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`
1 parent 528ca4f commit 0628255

File tree

1 file changed

+2
-1
lines changed
  • crates/bevy_dev_tools/src/ci_testing

1 file changed

+2
-1
lines changed

crates/bevy_dev_tools/src/ci_testing/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ impl Plugin for CiTestingPlugin {
5656
systems::send_events
5757
.before(trigger_screenshots)
5858
.before(bevy_window::close_when_requested)
59-
.in_set(SendEvents),
59+
.in_set(SendEvents)
60+
.ambiguous_with_all(),
6061
);
6162

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

0 commit comments

Comments
 (0)