Skip to content

Commit

Permalink
Fix calculation of uncovered files.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 13, 2010
1 parent ee0c799 commit d4bd5a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PHP/CodeCoverage.php
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ protected function processUncoveredFilesFromWhitelist()
$data = array();

$uncoveredFiles = array_diff(
$this->filter->getWhitelist(), array_keys($this->coveredFiles)
$this->filter->getWhitelist(), $this->coveredFiles
);

$newVariables = array();
Expand Down

0 comments on commit d4bd5a2

Please sign in to comment.