Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
‘cause I fail at remembering to do this . . .
  • Loading branch information
tedivm committed May 9, 2014
1 parent 3ab3b75 commit 9308cfe
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Tests/Collector/CacheDataCollectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ class CacheDataCollectorTest extends \PHPUnit_Framework_TestCase
protected $testClass = 'Tedivm\StashBundle\Collector\CacheDataCollector';

/**
* @param string $cacheService
* @param array $caches
* @param array $options
* @param string $cacheService
* @param array $caches
* @param array $options
* @return \Tedivm\StashBundle\Collector\CacheDataCollector
*/
public function testConstruct($cacheService = 'default', $caches = array('default'), $options = array('default' => array()))
{
$collector = new $this->testClass($cacheService, $caches, $options);
$this->assertInstanceOf($this->testClass, $collector);

return $collector;
}

Expand Down Expand Up @@ -121,7 +122,6 @@ protected function getPrimedCollector()
return $collector;
}


protected function getPopulatedCollector()
{
$services = array('first', 'second', 'third');
Expand All @@ -131,6 +131,7 @@ protected function getPopulatedCollector()
$collector->addTracker($this->getPopulatedTracker('first'));
$collector->addTracker($this->getPopulatedTracker('second'));
$collector->addTracker($this->getPopulatedTracker('third'));

return $collector;
}

Expand Down

0 comments on commit 9308cfe

Please sign in to comment.