aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/utils/videos.js
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-10-02 12:19:02 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-10-02 12:19:02 +0200
commitc4403b29ad4db097af528a7f04eea07e0ed320d0 (patch)
treec7d84fe1c45b7aa35d49312a83f4e7cfdf6af909 /server/tests/utils/videos.js
parent9f6bae3a9db13bf827f8aaff903aac06ec430903 (diff)
downloadPeerTube-c4403b29ad4db097af528a7f04eea07e0ed320d0.tar.gz
PeerTube-c4403b29ad4db097af528a7f04eea07e0ed320d0.tar.zst
PeerTube-c4403b29ad4db097af528a7f04eea07e0ed320d0.zip
Server: remove useless hash affectations
Diffstat (limited to 'server/tests/utils/videos.js')
-rw-r--r--server/tests/utils/videos.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/server/tests/utils/videos.js b/server/tests/utils/videos.js
index 90ee9621e..536093db1 100644
--- a/server/tests/utils/videos.js
+++ b/server/tests/utils/videos.js
@@ -5,17 +5,17 @@ const pathUtils = require('path')
5const request = require('supertest') 5const request = require('supertest')
6 6
7const videosUtils = { 7const videosUtils = {
8 getAllVideosListBy: getAllVideosListBy, 8 getAllVideosListBy,
9 getVideo: getVideo, 9 getVideo,
10 getVideosList: getVideosList, 10 getVideosList,
11 getVideosListPagination: getVideosListPagination, 11 getVideosListPagination,
12 getVideosListSort: getVideosListSort, 12 getVideosListSort,
13 removeVideo: removeVideo, 13 removeVideo,
14 searchVideo: searchVideo, 14 searchVideo,
15 searchVideoWithPagination: searchVideoWithPagination, 15 searchVideoWithPagination,
16 searchVideoWithSort: searchVideoWithSort, 16 searchVideoWithSort,
17 testVideoImage: testVideoImage, 17 testVideoImage,
18 uploadVideo: uploadVideo 18 uploadVideo
19} 19}
20 20
21// ---------------------- Export functions -------------------- 21// ---------------------- Export functions --------------------