From b6c06e8c30005008c505e9691c705a556f6e8265 Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 13 Aug 2021 10:46:07 +0100 Subject: [PATCH] Bugfix --- bin/pest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pest b/bin/pest index 7e2959ec..5fd0d896 100755 --- a/bin/pest +++ b/bin/pest @@ -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 `composer require --dev pestphp/pest-plugin-parallel` first."); exit(Command::FAILURE); }