Commit 9f1b76d2 9f1b76d25b0f038a75472986dd218eb898355782 by Mickaël Andrieu

Merge pull request #1092 from RasmusWL/patch-1

Minor typo correction
2 parents ab8f3ded bed988a8
...@@ -568,7 +568,7 @@ Casper.prototype.die = function die(message, status) { ...@@ -568,7 +568,7 @@ Casper.prototype.die = function die(message, status) {
568 this.result.status = "error"; 568 this.result.status = "error";
569 this.result.time = new Date().getTime() - this.startTime; 569 this.result.time = new Date().getTime() - this.startTime;
570 if (!utils.isString(message) || !message.length) { 570 if (!utils.isString(message) || !message.length) {
571 message = "Suite explicitely interrupted without any message given."; 571 message = "Suite explicitly interrupted without any message given.";
572 } 572 }
573 this.log(message, "error"); 573 this.log(message, "error");
574 this.echo(message, "ERROR"); 574 this.echo(message, "ERROR");
......