Changes -P to -p

This commit is contained in:
luke
2021-08-13 22:09:55 +01:00
parent 01d672d563
commit 578e97123d

View File

@ -53,7 +53,7 @@ use Symfony\Component\Console\Output\OutputInterface;
} }
} }
if (($runInParallel = $argv->hasParameterOption(['--parallel', '-P'])) && !class_exists(\Pest\Parallel\Command::class)) { if (($runInParallel = $argv->hasParameterOption(['--parallel', '-p'])) && !class_exists(\Pest\Parallel\Command::class)) {
$output->writeln("Parallel support requires the Pest Parallel plugin. Run <fg=yellow;options=bold>`composer require --dev pestphp/pest-plugin-parallel`</> first."); $output->writeln("Parallel support requires the Pest Parallel plugin. Run <fg=yellow;options=bold>`composer require --dev pestphp/pest-plugin-parallel`</> first.");
exit(Command::FAILURE); exit(Command::FAILURE);
} }