Skip to content

Commit

Permalink
fix: fixes Artisan Test command exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Dec 8, 2023
1 parent a0d1c64 commit 0225cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapters/Laravel/Commands/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0225cf9

Please sign in to comment.