lint
authorisaacs <i@izs.me>
Tue, 30 Apr 2013 22:02:19 +0000 (15:02 -0700)
committerisaacs <i@izs.me>
Tue, 14 May 2013 18:36:04 +0000 (11:36 -0700)
lib/assert.js

index 8b6b49ae43ba41ce5f554312e467267b445bdec4..11fef455ab7dc549c011d8f0e209317b93df3a3a 100644 (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);
 };