From 592dde82c1a3c0fd2c5cdcbead335e793fa89482 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 12 Mar 2023 18:34:28 +0100 Subject: [PATCH] tests/Feature/Game/GameBoardTest.php: remove unused variable. --- tests/Feature/Game/GameBoardTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Game/GameBoardTest.php b/tests/Feature/Game/GameBoardTest.php index f348efb..f1c30c1 100644 --- a/tests/Feature/Game/GameBoardTest.php +++ b/tests/Feature/Game/GameBoardTest.php @@ -20,7 +20,7 @@ class GameBoardTest extends TestCase $this->expectException(NotEnoughCardsException::class); - $board = new GameBoard(new GameBoardState(5, 5)); + new GameBoard(new GameBoardState(5, 5)); } public function test_exception_is_not_thrown_if_there_is_enough_cards_to_fill_it()