We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf0fa96 commit c773124Copy full SHA for c773124
lib/assert.js
@@ -42,7 +42,7 @@ assert.AssertionError = function AssertionError(options) {
42
this.actual = options.actual;
43
this.expected = options.expected;
44
this.operator = options.operator;
45
- this.message = options.message || getMessage(this)
+ this.message = options.message || getMessage(this);
46
var stackStartFunction = options.stackStartFunction || fail;
47
Error.captureStackTrace(this, stackStartFunction);
48
};
0 commit comments