Skip to content

Commit 5c5d22b

Browse files
committed
fix test that was accidently modified
1 parent f5ae85c commit 5c5d22b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/bevy_ecs/src/system/exclusive_system.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ mod tests {
131131
) {
132132
for entity in query.iter() {
133133
*counter += 1;
134-
commands.entity(entity);
135-
//commands.entity(entity).remove::<f32>();
134+
commands.entity(entity).remove::<f32>();
136135
}
137136
}
138137

0 commit comments

Comments
 (0)