From 26b5d2d910b9e29b5fddb1b31c6fc4ed72a7ae99 Mon Sep 17 00:00:00 2001 From: standard Date: Sun, 12 Jan 2025 13:01:07 +0100 Subject: [PATCH] Updated ParserTest --- tests/unit/Command/ParserTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/Command/ParserTest.php b/tests/unit/Command/ParserTest.php index af0cf12c..8c7a9121 100644 --- a/tests/unit/Command/ParserTest.php +++ b/tests/unit/Command/ParserTest.php @@ -4,9 +4,9 @@ use ChessServer\Command\Parser; use ChessServer\Command\Game\Cli; -use ChessServer\Command\Game\Async\RestartCommand; -use ChessServer\Command\Game\Sync\AcceptPlayRequestCommand; -use ChessServer\Command\Game\Sync\StartCommand; +use ChessServer\Command\Game\Blocking\RestartCommand; +use ChessServer\Command\Game\NonBlocking\AcceptPlayRequestCommand; +use ChessServer\Command\Game\NonBlocking\StartCommand; use ChessServer\Exception\ParserException; use PHPUnit\Framework\TestCase; use Spatie\Async\Pool;