Skip to content

Commit

Permalink
Fix problem with untrimmed command (#844)
Browse files Browse the repository at this point in the history
* Fix problem with untrimmed command

* Let tests also run on PHP8.3
  • Loading branch information
bambamboole committed Mar 13, 2024
1 parent 8083a42 commit 78e297a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
dependencies:
- "lowest"
- "highest"
Expand Down
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 78e297a

Please sign in to comment.