Skip to content

Commit

Permalink
Fix problem with untrimmed command
Browse files Browse the repository at this point in the history
  • Loading branch information
bambamboole authored Mar 12, 2024
1 parent 8083a42 commit 55b6a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/phpunit-wrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
exit;
}

$arguments = unserialize($command);
$arguments = unserialize(trim($command));
(new PHPUnit\TextUI\Command())->run($arguments, false);

fwrite($writeTo, WrapperWorker::TEST_EXECUTED_MARKER);
Expand Down

0 comments on commit 55b6a8b

Please sign in to comment.