From d6a7bc36c7097a25e95d7cfca7d0e9c45cb4a270 Mon Sep 17 00:00:00 2001 From: Alexander Bragdon Date: Wed, 1 Jul 2015 15:20:47 -0400 Subject: [PATCH] Changes hard tabs to double space soft tabs in the error throwing failure block. --- tasks/gulp-tests.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index 1f74adbd5d..14953c8559 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -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'); + } });