From 0225cf94fc9aaf645bbc42b5fc838aace025e0e3 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 8 Dec 2023 16:03:53 +0000 Subject: [PATCH] fix: fixes Artisan Test command exception message --- src/Adapters/Laravel/Commands/TestCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Adapters/Laravel/Commands/TestCommand.php b/src/Adapters/Laravel/Commands/TestCommand.php index 0bbeee0..0f80b7e 100644 --- a/src/Adapters/Laravel/Commands/TestCommand.php +++ b/src/Adapters/Laravel/Commands/TestCommand.php @@ -87,7 +87,7 @@ public function handle() $usesParallel = $this->option('parallel'); if ($usesParallel && ! $this->isParallelDependenciesInstalled()) { - throw new RequirementsException('Running Collision 7.x artisan test command in parallel requires at least ParaTest (brianium/paratest) 7.x.'); + throw new RequirementsException('Running Collision 8.x artisan test command in parallel requires at least ParaTest (brianium/paratest) 7.x.'); } $options = array_slice($_SERVER['argv'], $this->option('without-tty') ? 3 : 2);