Skip to content

Commit

Permalink
[fix] Changed test
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo-lua committed Oct 12, 2024
1 parent 4eb48f2 commit 6fbfb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ mod tests {
world.entity_mut(entity).get_mut::<A>().unwrap().0 = 2;
{
let query = system_state.get(&world);
assert_eq!(**query.unwrap(), A(1));
assert_eq!(**query.unwrap(), A(2));
}
}

Expand Down

0 comments on commit 6fbfb5d

Please sign in to comment.