Commit c4049f65 c4049f65a3a991fa48e602acc9751dceb7865003 by Nicolas Perriault

Merge pull request #623 from jameydeorio/master

Fix typo in warning message
2 parents 7897d32a 4b4e09e6
...@@ -1358,7 +1358,7 @@ Tester.prototype.processError = function processError(error) { ...@@ -1358,7 +1358,7 @@ Tester.prototype.processError = function processError(error) {
1358 Tester.prototype.processPhantomError = function processPhantomError(msg, backtrace) { 1358 Tester.prototype.processPhantomError = function processPhantomError(msg, backtrace) {
1359 "use strict"; 1359 "use strict";
1360 if (/^AssertionError/.test(msg)) { 1360 if (/^AssertionError/.test(msg)) {
1361 this.casper.warn('looks you did not use begin() which is mandatory since 1.1'); 1361 this.casper.warn('looks like you did not use begin(), which is mandatory since 1.1');
1362 } 1362 }
1363 var termination = /^TerminationError:?\s?(.*)/.exec(msg); 1363 var termination = /^TerminationError:?\s?(.*)/.exec(msg);
1364 if (termination) { 1364 if (termination) {
......