Merge pull request #623 from jameydeorio/master
Fix typo in warning message
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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) { | ... | ... |
-
Please register or sign in to post a comment