Skip to content

Commit

Permalink
fixed 'fixed' failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shiv-0831 committed Sep 10, 2023
1 parent 0934f98 commit a1223c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public void testWeaponTowerCombatStatsComponentAndCostComponent() {
"Fire Tower cost must 10");
assertEquals(10, stunTower.getComponent(CombatStatsComponent.class).getHealth(),
"Stun Tower health must be 10");
assertEquals(5, stunTower.getComponent(CombatStatsComponent.class).getBaseAttack(),
assertEquals(10, stunTower.getComponent(CombatStatsComponent.class).getBaseAttack(),
"Stun Tower base attack must be 10");
assertEquals(10, fireTower.getComponent(CostComponent.class).getCost(),
"Stun Tower cost must 10");
Expand Down

0 comments on commit a1223c7

Please sign in to comment.