1
0
Fork 0

tests/Feature/Game/GameBoardTest.php: remove unused variable.

This commit is contained in:
Henrik Hautakoski 2023-03-12 18:34:28 +01:00
parent 2a7d302e9d
commit 592dde82c1

View file

@ -20,7 +20,7 @@ class GameBoardTest extends TestCase
$this->expectException(NotEnoughCardsException::class); $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() public function test_exception_is_not_thrown_if_there_is_enough_cards_to_fill_it()