pull/35604/head
isaacs 2013-04-19 16:25:11 -07:00
parent cf0fa96db8
commit c77312405e
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ assert.AssertionError = function AssertionError(options) {
this.actual = options.actual;
this.expected = options.expected;
this.operator = options.operator;
this.message = options.message || getMessage(this)
this.message = options.message || getMessage(this);
var stackStartFunction = options.stackStartFunction || fail;
Error.captureStackTrace(this, stackStartFunction);
};