Skip to content

Commit

Permalink
Fix toString of Test262Error
Browse files Browse the repository at this point in the history
  • Loading branch information
bterlson committed Oct 11, 2014
1 parent 4522e51 commit d73605f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helpers/Test262Error.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ function Test262Error(message) {
}

Test262Error.prototype.toString = function () {
return "Test262 Error: " + this.message;
return "Test262Error: " + this.message;
};

0 comments on commit d73605f

Please sign in to comment.