aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/checkParams.js
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-07-18 17:17:52 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-07-18 17:17:52 +0200
commit1a42c9e2c0fb64cdbebd81b311736e752f591e0a (patch)
treee893324d730878257491428ffca634a92f1eea05 /server/tests/api/checkParams.js
parentd56ec0d4129160a6e3b51ace3766bb325db1f101 (diff)
downloadPeerTube-1a42c9e2c0fb64cdbebd81b311736e752f591e0a.tar.gz
PeerTube-1a42c9e2c0fb64cdbebd81b311736e752f591e0a.tar.zst
PeerTube-1a42c9e2c0fb64cdbebd81b311736e752f591e0a.zip
Server: udpate async to 2.0.0
Diffstat (limited to 'server/tests/api/checkParams.js')
-rw-r--r--server/tests/api/checkParams.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/checkParams.js b/server/tests/api/checkParams.js
index 7f22a37cc..c1ba9c2c0 100644
--- a/server/tests/api/checkParams.js
+++ b/server/tests/api/checkParams.js
@@ -1,10 +1,10 @@
1'use strict' 1'use strict'
2 2
3const async = require('async')
4const chai = require('chai') 3const chai = require('chai')
5const expect = chai.expect 4const expect = chai.expect
6const pathUtils = require('path') 5const pathUtils = require('path')
7const request = require('supertest') 6const request = require('supertest')
7const series = require('async/series')
8 8
9const utils = require('./utils') 9const utils = require('./utils')
10 10
@@ -57,7 +57,7 @@ describe('Test parameters validator', function () {
57 before(function (done) { 57 before(function (done) {
58 this.timeout(20000) 58 this.timeout(20000)
59 59
60 async.series([ 60 series([
61 function (next) { 61 function (next) {
62 utils.flushTests(next) 62 utils.flushTests(next)
63 }, 63 },