Commit 4b4e09e6 4b4e09e6ce15f5e71fd35ef6efae4711a080f523 by Jamey J. DeOrio

Fix typo in warning message

1 parent 7897d32a
......@@ -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) {
......