Change wording to retry.

This commit is contained in:
John-David Dalton
2014-04-24 09:55:17 -07:00
parent b559eeb7e6
commit 4c63be066f

View File

@@ -320,7 +320,7 @@
if (!result || failures || reError.test(result.message)) {
if (this.attempts < maxRetries) {
this.attempts++;
console.log(label + ' ' + description + ' attempt %d', this.attempts);
console.log(label + ' ' + description + ' retry #%d', this.attempts);
this.run();
return;
}