Skip to content

Commit

Permalink
Merge pull request #330 from lptn/fix-ta
Browse files Browse the repository at this point in the history
Fix spacing issue in Psalm params
  • Loading branch information
lptn authored Feb 6, 2023
2 parents a9a781e + 8bdc60c commit 7d1ac5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Acceptance/Support/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function runPsalmOn(string $filename, array $options = []): void
$options = array_map('escapeshellarg', $options);
$cmd = $this->getPsalmPath()
. ' --output-format=json '
. ' --no-progress'
. ' --no-progress '
. join(' ', $options) . ' '
. ($filename ? escapeshellarg($filename) : '')
. ' 2>&1';
Expand Down

0 comments on commit 7d1ac5b

Please sign in to comment.