Skip to content

Commit

Permalink
Merge pull request #142 from Krinkle/patch-1
Browse files Browse the repository at this point in the history
chore: Clean up space in preprocessor
  • Loading branch information
dignifiedquire committed Jun 9, 2015
2 parents d37d90f + f917d27 commit aeefe4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/preprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ var createCoveragePreprocessor = function(logger, basePath, reporters, coverageR
var coverageObjMatch = coverageObjRegex.exec(instrumentedCode);

if (coverageObjMatch !== null) {
var coverageObj = JSON.parse(coverageObjMatch[0]);
coverageMap.add(coverageObj);
var coverageObj = JSON.parse(coverageObjMatch[0]);

coverageMap.add(coverageObj);
}
}

Expand Down

0 comments on commit aeefe4c

Please sign in to comment.