Skip to content

Commit

Permalink
Merge pull request #557 from Gisonrg/fix-escape-char
Browse files Browse the repository at this point in the history
Fix duplicate escaped '&' character
  • Loading branch information
alex-seville committed Mar 19, 2016
2 parents 45a8d5f + 4b6c676 commit 542ef95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/qunit/reporter.js
Expand Up @@ -44,8 +44,7 @@ blanket.defaultReporter = function(coverage){
.replace(/\"/g, """)
.replace(/\'/g, "'")
.replace(/`/g, "`")
.replace(/[$]/g, "$")
.replace(/&/g, "&");
.replace(/[$]/g, "$");
}

function isBranchFollowed(data,bool){
Expand Down

0 comments on commit 542ef95

Please sign in to comment.