diff --git a/tests/Unit/CategorizePcGameTest.php b/tests/Unit/CategorizePcGameTest.php index e24b97254..e75d06d4a 100644 --- a/tests/Unit/CategorizePcGameTest.php +++ b/tests/Unit/CategorizePcGameTest.php @@ -16,7 +16,7 @@ class CategorizePcGameTest extends TestCase protected function setUp(): void { parent::setUp(); - $this->categorizer = new PcCategorizer(); + $this->categorizer = new PcCategorizer; } public function test_pc_game_detects_common_scene_groups(): void diff --git a/tests/Unit/GamesParseTest.php b/tests/Unit/GamesParseTest.php index b074696c5..ebdfdc26e 100644 --- a/tests/Unit/GamesParseTest.php +++ b/tests/Unit/GamesParseTest.php @@ -15,7 +15,7 @@ class GamesParseTest extends TestCase protected function setUp(): void { parent::setUp(); - $this->parser = new GamesTitleParser(); + $this->parser = new GamesTitleParser; } #[DataProvider('titlesProvider')]