File tree 1 file changed +4
-3
lines changed
crates/bevy_transform/src
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,8 @@ mod test {
179
179
use bevy_tasks:: { ComputeTaskPool , TaskPool } ;
180
180
181
181
use crate :: components:: { GlobalTransform , Transform } ;
182
- use crate :: { propagate_transforms, sync_simple_transforms, TransformBundle } ;
182
+ use crate :: systems:: * ;
183
+ use crate :: TransformBundle ;
183
184
use bevy_hierarchy:: { BuildChildren , BuildWorldChildren , Children , Parent } ;
184
185
185
186
#[ test]
@@ -445,8 +446,8 @@ mod test {
445
446
let mut temp = World :: new ( ) ;
446
447
let mut app = App :: new ( ) ;
447
448
448
- app. add_system ( sync_simple_transforms ) ;
449
- app . add_system ( propagate_transforms ) ;
449
+ app. add_system ( propagate_transforms )
450
+ . add_system ( sync_simple_transforms ) ;
450
451
451
452
fn setup_world ( world : & mut World ) -> ( Entity , Entity ) {
452
453
let mut grandchild = Entity :: from_raw ( 0 ) ;
You can’t perform that action at this time.
0 commit comments