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) {
Tester.prototype.processPhantomError = function processPhantomError(msg, backtrace) {
"use strict";
if (/^AssertionError/.test(msg)) {
this.casper.warn('looks you did not use begin() which is mandatory since 1.1');
this.casper.warn('looks like you did not use begin(), which is mandatory since 1.1');
}
var termination = /^TerminationError:?\s?(.*)/.exec(msg);
if (termination) {
......