Skip to content

Commit

Permalink
Fixed error in test files
Browse files Browse the repository at this point in the history
  • Loading branch information
cindyle1 committed Sep 29, 2023
1 parent 551acf3 commit 3b78d63
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,19 +150,19 @@ public void testDemonAnimationController() {
}
@Test
public void testPatrickCreation() {
Entity Patrick = MobBossFactory.createPatrickBoss();
Entity Patrick = MobBossFactory.createPatrickBoss(3000);
assertNotNull(Patrick);
}

@Test
public void testPatrickAnimationRenderComponent() {
Entity Patrick = MobBossFactory.createPatrickBoss();
Entity Patrick = MobBossFactory.createPatrickBoss(3000);
assertNotNull(Patrick.getComponent(AnimationRenderComponent.class),
"Patrick does not have an AnimationRenderComponent");
}
@Test
public void testPatrickAnimationController() {
Entity Patrick = MobBossFactory.createPatrickBoss();
Entity Patrick = MobBossFactory.createPatrickBoss(3000);
assertNotNull(Patrick.getComponent(PatrickAnimationController.class),
"Patrick does not have an Animation Controller");
}
Expand Down

0 comments on commit 3b78d63

Please sign in to comment.