From 0b8af89363f2ee9824376dd5e5fc5a918ea9aeeb Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 30 Apr 2013 15:02:19 -0700 Subject: [PATCH] lint --- lib/assert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/assert.js b/lib/assert.js index 8b6b49ae43..11fef455ab 100644 --- a/lib/assert.js +++ b/lib/assert.js @@ -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); };