diff --git a/test/Integration/Command/ExecCommandTest.php b/test/Integration/Command/ExecCommandTest.php index 82bedb1..89ece3c 100644 --- a/test/Integration/Command/ExecCommandTest.php +++ b/test/Integration/Command/ExecCommandTest.php @@ -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(<<