Skip to content

Commit

Permalink
Closes #2094
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 9, 2016
1 parent 37fa29b commit 5760330
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog-5.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes of the PHPUnit 5.2 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [5.2.11] - 2016-MM-DD

### Fixed

* Fixed [#2094](https://github.com/sebastianbergmann/phpunit/issues/2094): Missing argument for `PHPUnit_TextUI_TestRunner::run()`

## [5.2.10] - 2016-03-03

### Fixed
Expand Down Expand Up @@ -87,6 +93,7 @@ All notable changes of the PHPUnit 5.2 release series are documented in this fil

* The `mapTestClassNameToCoveredClassName` configuration setting has been removed

[5.2.11]: https://github.com/sebastianbergmann/phpunit/compare/5.2.10...5.2.11
[5.2.10]: https://github.com/sebastianbergmann/phpunit/compare/5.2.9...5.2.10
[5.2.9]: https://github.com/sebastianbergmann/phpunit/compare/5.2.8...5.2.9
[5.2.8]: https://github.com/sebastianbergmann/phpunit/compare/5.2.7...5.2.8
Expand Down
2 changes: 1 addition & 1 deletion src/TextUI/TestRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private function processSuiteFilters(PHPUnit_Framework_TestSuite $suite, array $
*
* @return PHPUnit_Framework_TestResult
*/
public function doRun(PHPUnit_Framework_Test $suite, array $arguments = [], $exit)
public function doRun(PHPUnit_Framework_Test $suite, array $arguments = [], $exit = true)
{
if (isset($arguments['configuration'])) {
$GLOBALS['__PHPUNIT_CONFIGURATION_FILE'] = $arguments['configuration'];
Expand Down

0 comments on commit 5760330

Please sign in to comment.