@@ -142,7 +142,7 @@ mod tests {
142
142
async fn should_return_none_if_the_tracker_does_not_have_the_torrent ( ) {
143
143
let config = tracker_configuration ( ) ;
144
144
145
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
145
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
146
146
initialize_tracker_dependencies ( & config) ;
147
147
148
148
let tracker = initialize_tracker ( & config, & database, & whitelist_authorization, & authentication) ;
@@ -162,7 +162,7 @@ mod tests {
162
162
async fn should_return_the_torrent_info_if_the_tracker_has_the_torrent ( ) {
163
163
let config = tracker_configuration ( ) ;
164
164
165
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
165
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
166
166
initialize_tracker_dependencies ( & config) ;
167
167
168
168
let tracker = Arc :: new ( initialize_tracker (
@@ -213,7 +213,7 @@ mod tests {
213
213
async fn should_return_an_empty_result_if_the_tracker_does_not_have_any_torrent ( ) {
214
214
let config = tracker_configuration ( ) ;
215
215
216
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
216
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
217
217
initialize_tracker_dependencies ( & config) ;
218
218
219
219
let tracker = Arc :: new ( initialize_tracker (
@@ -232,7 +232,7 @@ mod tests {
232
232
async fn should_return_a_summarized_info_for_all_torrents ( ) {
233
233
let config = tracker_configuration ( ) ;
234
234
235
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
235
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
236
236
initialize_tracker_dependencies ( & config) ;
237
237
238
238
let tracker = Arc :: new ( initialize_tracker (
@@ -264,7 +264,7 @@ mod tests {
264
264
async fn should_allow_limiting_the_number_of_torrents_in_the_result ( ) {
265
265
let config = tracker_configuration ( ) ;
266
266
267
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
267
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
268
268
initialize_tracker_dependencies ( & config) ;
269
269
270
270
let tracker = Arc :: new ( initialize_tracker (
@@ -294,7 +294,7 @@ mod tests {
294
294
async fn should_allow_using_pagination_in_the_result ( ) {
295
295
let config = tracker_configuration ( ) ;
296
296
297
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
297
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
298
298
initialize_tracker_dependencies ( & config) ;
299
299
300
300
let tracker = Arc :: new ( initialize_tracker (
@@ -333,7 +333,7 @@ mod tests {
333
333
async fn should_return_torrents_ordered_by_info_hash ( ) {
334
334
let config = tracker_configuration ( ) ;
335
335
336
- let ( database, _in_memory_whitelist, whitelist_authorization, authentication) =
336
+ let ( database, _in_memory_whitelist, whitelist_authorization, authentication, _authentication_service ) =
337
337
initialize_tracker_dependencies ( & config) ;
338
338
339
339
let tracker = Arc :: new ( initialize_tracker (
0 commit comments