Don't double escape focus spec links.

- QueryString already escapes parameter values, no need to escape when
  passing them in from HtmlReporter.

[finish #29578495]
This commit is contained in:
slackersoft
2014-12-16 17:21:22 -08:00
parent ea88023553
commit 6c131beda7
3 changed files with 5 additions and 5 deletions

View File

@@ -278,7 +278,7 @@ jasmineRequire.HtmlReporter = function(j$) {
}
function specHref(result) {
return addToExistingQueryString('spec', encodeURIComponent(result.fullName));
return addToExistingQueryString('spec', result.fullName);
}
function defaultQueryString(key, value) {