Skip to content

Commit

Permalink
Fix rebase mishaps
Browse files Browse the repository at this point in the history
  • Loading branch information
nicopap committed Feb 7, 2023
1 parent 96c2bbf commit b63cbc8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crates/bevy_transform/src/systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ mod test {
use bevy_tasks::{ComputeTaskPool, TaskPool};

use crate::components::{GlobalTransform, Transform};
use crate::{propagate_transforms, sync_simple_transforms, TransformBundle};
use crate::systems::*;
use crate::TransformBundle;
use bevy_hierarchy::{BuildChildren, BuildWorldChildren, Children, Parent};

#[test]
Expand Down Expand Up @@ -445,8 +446,8 @@ mod test {
let mut temp = World::new();
let mut app = App::new();

app.add_system(sync_simple_transforms);
app.add_system(propagate_transforms);
app.add_system(propagate_transforms)
.add_system(sync_simple_transforms);

fn setup_world(world: &mut World) -> (Entity, Entity) {
let mut grandchild = Entity::from_raw(0);
Expand Down

0 comments on commit b63cbc8

Please sign in to comment.