From edaf3ef4db7f29884fb73f4c8a6366bae3075e23 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Fri, 12 Feb 2016 19:50:50 +0100 Subject: [PATCH] fix typo: 1028->1024 bytes --- tasks/gulp-tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index c8af5e8b18..6256440998 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -356,7 +356,7 @@ gulp.task('test:api-v3:unit', (done) => { gulp.task('test:api-v3:integration', (done) => { let runner = exec( testBin('mocha test/api/v3/integration --recursive'), - {maxBuffer: 500*1028}, + {maxBuffer: 500*1024}, (err, stdout, stderr) => done(err) ) @@ -366,7 +366,7 @@ gulp.task('test:api-v3:integration', (done) => { gulp.task('test:api-v3:integration:separate-server', (done) => { let runner = exec( testBin('mocha test/api/v3/integration --recursive', 'LOAD_SERVER=0'), - {maxBuffer: 500*1028}, + {maxBuffer: 500*1024}, (err, stdout, stderr) => done(err) )