Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Commit

Permalink
v2.0.1 another bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
defenestrator committed Mar 15, 2018
1 parent b2f0aad commit 984bd27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ You may alternatively include the project in your composer.json:
```json
{
"require-dev": {
"copacetic/test-printer": ">=1.0.1"
"copacetic/test-printer": ">=2.0.1"
}
}
```
Expand Down
5 changes: 3 additions & 2 deletions src/Copacetic/TestResultPrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ private function out($message, $color = '', $linebreak = false)

/**
* @param \PHPUnit\Framework\Test $test
* @param $time
*/
public function startTest(\PHPUnit\Framework\Test $test)
public function startTest(\PHPUnit\Framework\Test $test, $time)
{
$this->out("'" . $test->getName() . "'...");
$this->out("'" . $test->getName() . "'...running");
}

/**
Expand Down

0 comments on commit 984bd27

Please sign in to comment.