Skip to content

Commit

Permalink
Fixed typo in firework tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cindyle1 committed Sep 11, 2023
1 parent c304c9a commit 03ef30c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,14 +286,14 @@ public void testFireworkProjectileAnimationRenderComponent() {
Entity fireworkProjectile = ProjectileFactory.createFireworks(
PhysicsLayer.TOWER, new Vector2(0.1f, 0.1f), new Vector2(1f, 1f));
assertNotNull(fireworkProjectile.getComponent(AnimationRenderComponent.class),
"Slow Projectile does not have AnimationRenderComponent");
"Fire Projectile does not have AnimationRenderComponent");
}
@Test
public void testFireworkProjectileAnimationController() {
Entity fireworkProjectile = ProjectileFactory.createFireworks(
PhysicsLayer.TOWER, new Vector2(0.1f, 0.1f), new Vector2(1f, 1f));
assertNotNull(fireworkProjectile.getComponent(FireworkAnimationController.class),
"Slow Projectile does not have Animation Controller");
"Fire Projectile does not have Animation Controller");
}
}

0 comments on commit 03ef30c

Please sign in to comment.