Skip to content

Commit

Permalink
Fix for deprecated symfony/process string construction
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche committed Jul 18, 2019
1 parent 7ec7819 commit f383c17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `phpunit-watcher` will be documented in this file

## 1.9.1 - 2019-03-25

- fix for deprecated symfony/process string construction

## 1.9.0 - 2019-03-25

- add `hideManual` option
Expand Down
2 changes: 1 addition & 1 deletion src/Screens/Phpunit.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected function writeHeader()

protected function runTests()
{
$result = (new Process("{$this->phpunitBinaryPath} {$this->phpunitArguments}"))
$result = (new Process(["{$this->phpunitBinaryPath} {$this->phpunitArguments}"]))
->setTty(true)
->run(function ($type, $line) {
echo $line;
Expand Down

0 comments on commit f383c17

Please sign in to comment.