Passed
Push — master ( 465240...c8cc94 )
by Jakub
02:15
created
tests/HeroesofAbenez/Combat/CombatActions/AttackTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
   
21 21
   protected function generateCharacter(int $id): Character {
22 22
     $stats = [
23
-      "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
23
+      "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
24 24
       "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
25 25
     ];
26 26
     return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/StaticSuccessCalculatorTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
   
21 21
   protected function generateCharacter(int $id): Character {
22 22
     $stats = [
23
-      "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
23
+      "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
24 24
       "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
25 25
     ];
26 26
     return new Character($stats);
Please login to merge, or discard this patch.
tests/HeroesofAbenez/Combat/TextCombatLogRenderTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
   
21 21
   protected function generateCharacter(int $id): Character {
22 22
     $stats = [
23
-      "id" => $id, "name" => "Player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
23
+      "id" => $id, "name" => "player $id", "level" => 1, "initiativeFormula" => "1d2+DEX/4", "strength" => 10,
24 24
       "dexterity" => 10, "constitution" => 10, "intelligence" => 10, "charisma" => 10
25 25
     ];
26 26
     return new Character($stats);
Please login to merge, or discard this patch.