aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/real-world
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/real-world')
-rw-r--r--server/tests/real-world/real-world.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/tests/real-world/real-world.ts b/server/tests/real-world/real-world.ts
index da5696f8c..c79ad38ff 100644
--- a/server/tests/real-world/real-world.ts
+++ b/server/tests/real-world/real-world.ts
@@ -3,7 +3,6 @@ import * as program from 'commander'
3// /!\ Before imports /!\ 3// /!\ Before imports /!\
4process.env.NODE_ENV = 'test' 4process.env.NODE_ENV = 'test'
5 5
6import { REQUESTS_INTERVAL } from '../../initializers/constants'
7import { Video, VideoRateType, VideoFile } from '../../../shared' 6import { Video, VideoRateType, VideoFile } from '../../../shared'
8import { 7import {
9 ServerInfo as DefaultServerInfo, 8 ServerInfo as DefaultServerInfo,
@@ -137,7 +136,7 @@ async function start () {
137 initializeRequestsPerServer(servers) 136 initializeRequestsPerServer(servers)
138 checking = false 137 checking = false
139 clearInterval(waitingInterval) 138 clearInterval(waitingInterval)
140 }, REQUESTS_INTERVAL) 139 }, 10000)
141 }, integrityInterval) 140 }, integrityInterval)
142} 141}
143 142