@@ -26,25 +26,26 @@ digraph {
2626 node_2 [label="bevy_asset::assets::Assets<()>::asset_events"];
2727 node_3 [label="bevy_asset::assets::Assets<bevy_mod_scripting_asset::script_asset::ScriptAsset>::asset_events"];
2828 node_4 [label="bevy_mod_scripting_bindings::allocator::garbage_collector"];
29- node_5 [label="script_integration_test_harness::dummy_before_post_update_system "];
30- node_6 [label="script_integration_test_harness::dummy_post_update_system "];
31- node_7 [label="on_test_post_update "];
32- node_8 [label="custom_system_a "];
33- node_9 [label="custom_system_b "];
34- node_10 [label="SystemSet AssetEvents "];
35- node_11 [label="SystemSet GarbageCollection "];
36- node_12 [label="SystemSet ScriptSystem(custom_system_a) "];
37- node_13 [label="SystemSet ScriptSystem(custom_system_b )"];
38- node_0 -> node_10 [color=red, label="child of", arrowhead=diamond ];
39- node_1 -> node_10 [color=red, label="child of", arrowhead=diamond];
40- node_2 -> node_10 [color=red, label="child of", arrowhead=diamond];
41- node_3 -> node_10 [color=red, label="child of", arrowhead=diamond];
42- node_4 -> node_11 [color=red, label="child of", arrowhead=diamond];
43- node_8 -> node_12 [color=red, label="child of", arrowhead=diamond];
29+ node_5 [label="bevy_mod_scripting_core::handler::script_error_logger "];
30+ node_6 [label="script_integration_test_harness::dummy_before_post_update_system "];
31+ node_7 [label="script_integration_test_harness::dummy_post_update_system "];
32+ node_8 [label="on_test_post_update "];
33+ node_9 [label="custom_system_a "];
34+ node_10 [label="custom_system_b "];
35+ node_11 [label="SystemSet AssetEvents "];
36+ node_12 [label="SystemSet GarbageCollection "];
37+ node_13 [label="SystemSet ScriptSystem(custom_system_a )"];
38+ node_14 [ label="SystemSet ScriptSystem(custom_system_b)" ];
39+ node_0 -> node_11 [color=red, label="child of", arrowhead=diamond];
40+ node_1 -> node_11 [color=red, label="child of", arrowhead=diamond];
41+ node_2 -> node_11 [color=red, label="child of", arrowhead=diamond];
42+ node_3 -> node_11 [color=red, label="child of", arrowhead=diamond];
43+ node_4 -> node_12 [color=red, label="child of", arrowhead=diamond];
4444 node_9 -> node_13 [color=red, label="child of", arrowhead=diamond];
45- node_5 -> node_6 [color=blue, label="runs before", arrowhead=normal];
46- node_7 -> node_8 [color=blue, label="runs before", arrowhead=normal];
47- node_7 -> node_9 [color=blue, label="runs before", arrowhead=normal];
45+ node_10 -> node_14 [color=red, label="child of", arrowhead=diamond];
46+ node_6 -> node_7 [color=blue, label="runs before", arrowhead=normal];
47+ node_8 -> node_9 [color=blue, label="runs before", arrowhead=normal];
48+ node_8 -> node_10 [color=blue, label="runs before", arrowhead=normal];
4849}`;
4950
5051 assert_str_eq.call(dot_graph, expected_dot_graph, "Expected the schedule graph to match the expected graph");
0 commit comments