Better subject for email result

This commit is contained in:
Girish Ramakrishnan 2015-07-27 18:35:09 -07:00
parent 154cc9eb4f
commit d0994195f6
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ function runTests(latestVersionInfo, callback) {
gNpmTest = null;
debug('Final test result', error);
var topic = util.format('E2E Test %s for box version: %s', error ? 'failed': 'succeess', latestVersionInfo.version);
var topic = util.format('E2E Test %s for box version: %s', error ? 'failed': 'passed', latestVersionInfo.version);
mailer.sendEndToEndTestResult(topic, JSON.stringify(latestVersionInfo, null, 4), stdout ? stdout.toString('utf8') : '', stderr ? stderr.toString('utf8') : '', function () { });
return callback(error);