diff options
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/real-world/real-world.ts | 3 |
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 /!\ |
4 | process.env.NODE_ENV = 'test' | 4 | process.env.NODE_ENV = 'test' |
5 | 5 | ||
6 | import { REQUESTS_INTERVAL } from '../../initializers/constants' | ||
7 | import { Video, VideoRateType, VideoFile } from '../../../shared' | 6 | import { Video, VideoRateType, VideoFile } from '../../../shared' |
8 | import { | 7 | import { |
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 | ||