From 45ddc77eaa07ad8ed2cb1f4e65371bc8a6dc3fdf Mon Sep 17 00:00:00 2001 From: Alexander Bragdon Date: Wed, 1 Jul 2015 14:45:27 -0400 Subject: [PATCH] Fixes a typo in test:api:safe, missed semicolon on line 97. --- tasks/gulp-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index c5b85f2d27..1f74adbd5d 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -94,7 +94,7 @@ gulp.task('test:api:safe', ['test:prepare:mongo'], (cb) => { cb(); } ); - pipe(runner) + pipe(runner); }); gulp.task('test:api:clean', (cb) => {