Skip to content

Commit

Permalink
Fix: Drush version RegExp mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarius committed Dec 13, 2023
1 parent 4aee64d commit 2c12c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Integration/Command/ExecCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public function testCatchStdErrOutput(): void {
$output = shell_exec('drall exec --drall-filter=default drush version --verbose');

// Ignore the Drush Version.
$output = preg_replace('@(Drush version :) (\d+\.\d+\.\d+)@', '$1 x.y.z', $output);
$output = preg_replace('@(Drush version :) ([\d|\.|-]+)@', '$1 x.y.z', $output);

$this->assertOutputEquals(<<<EOF
Finished: default
Expand Down

0 comments on commit 2c12c0a

Please sign in to comment.