Skip to content

Commit

Permalink
Fixed: Do not overwrite tests for filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
adri committed Jan 31, 2014
1 parent a0af625 commit 6c557a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/VCR/Configuration.php
Expand Up @@ -37,7 +37,7 @@ class Configuration
'post_fields' => array('VCR\RequestMatcher', 'matchPostFields'),
);
private $whiteList = array();
private $blackList = array('src/VCR/LibraryHooks/', 'src/VCR/Util/SoapClient');
private $blackList = array('src/VCR/LibraryHooks/', 'src/VCR/Util/SoapClient', 'tests/VCR/Filter');

/**
*
Expand All @@ -50,7 +50,8 @@ public function getBlackList()

/**
* @param string|array $paths
* @return $this
*
* @return Configuration
*/
public function setBlackList($paths)
{
Expand All @@ -59,7 +60,6 @@ public function setBlackList($paths)
$this->blackList = $paths;

return $this;

}

/**
Expand Down

0 comments on commit 6c557a5

Please sign in to comment.