Changes hard tabs to double space soft tabs in the error throwing failure block.

This commit is contained in:
Alexander Bragdon
2015-07-01 15:20:47 -04:00
parent 45ddc77eaa
commit d6a7bc36c7

View File

@@ -219,8 +219,8 @@ gulp.task('test', [
`\x1b[36mPending: ${totals[2]}\t`
);
if (totals[1] > 0) throw "ERROR: There are failing tests!"
else {
console.log('\n\x1b[36mThanks for helping keep Habitica clean!\x1b[0m');
}
if (totals[1] > 0) throw "ERROR: There are failing tests!"
else {
console.log('\n\x1b[36mThanks for helping keep Habitica clean!\x1b[0m');
}
});