File tree 1 file changed +0
-27
lines changed
crates/bevy_ecs/src/schedule
1 file changed +0
-27
lines changed Original file line number Diff line number Diff line change @@ -437,31 +437,4 @@ mod tests {
437
437
6
438
438
) ;
439
439
}
440
-
441
- #[ test]
442
- fn report_internal ( ) {
443
- let mut test_stage = SystemStage :: parallel ( ) ;
444
- let mut world = World :: new ( ) ;
445
- world. insert_resource ( TestResource ) ;
446
-
447
- test_stage
448
- // Ambiguous with E and F
449
- . add_system ( system_a)
450
- // Internal ambiguities are ignored by default
451
- . add_system ( bevy_render:: system_e)
452
- . add_system ( bevy_render:: system_f) ;
453
-
454
- // We need to ensure that the schedule has been properly initialized
455
- test_stage. initialize ( & mut world) ;
456
-
457
- assert_eq ! (
458
- test_stage. n_ambiguities( ReportExecutionOrderAmbiguities :: Verbose ) ,
459
- 2
460
- ) ;
461
-
462
- assert_eq ! (
463
- test_stage. n_ambiguities( ReportExecutionOrderAmbiguities :: ReportInternal ) ,
464
- 3
465
- ) ;
466
- }
467
440
}
You can’t perform that action at this time.
0 commit comments