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`
This commit is contained in:
IceSentry 2024-10-03 16:02:52 -04:00 committed by GitHub
parent 528ca4f95e
commit 0628255c45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.