Skip to content

Commit

Permalink
fix coloring issue on reproter
Browse files Browse the repository at this point in the history
  • Loading branch information
lefthandedgoat committed Mar 25, 2016
1 parent 5efbcd4 commit de41b3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/files/reporttemplatep.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,12 @@

var addUrlToTest = function (context, testName, url) {
var ctx = getContext(context);
getTestRow(ctx, testName).after('<div class="url"><pre>' + url + '</pre></div>');
getTest(ctx, testName).after('<div class="url"><pre>' + url + '</pre></div>');
};

var addStackToTest = function (context, testName, stack) {
var ctx = getContext(context);
getTestRow(ctx, testName).after('<div class="stack"><pre>' + stack + '</pre></div>');
getTest(ctx, testName).after('<div class="stack"><pre>' + stack + '</pre></div>');
};

var addTimeToTest = function (context, testName, time) {
Expand Down

0 comments on commit de41b3b

Please sign in to comment.