From f2a6bf9afd578373d4274c2dacc292cf13f527e8 Mon Sep 17 00:00:00 2001 From: Michael Leanos Date: Tue, 12 Apr 2016 00:02:30 -0700 Subject: [PATCH] fix(gulp): Trailing spaces lint error in gulpfile (#1303) Removes the trailing spaces in the gulpfile causing a linting error. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 181cab3150..ed3f5e0bdf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -100,7 +100,7 @@ gulp.task('watch:server:run-tests', function () { // determine if the changed (watched) file is a server test _.forEach(glob.sync(pattern), function (f) { var filePath = path.resolve(f); - + if (filePath === path.resolve(file.path)) { changedTestFiles.push(f); }