@@ -282,8 +282,6 @@ public void should_delete_folder_if_files_were_imported_and_only_sample_files_re
282282 Mocker . GetMock < IImportApprovedGame > ( )
283283 . Setup ( s => s . Import ( It . IsAny < List < ImportDecision > > ( ) , true , null , ImportMode . Auto ) )
284284 . Returns ( imported . Select ( i => new ImportResult ( i ) ) . ToList ( ) ) ;
285-
286-
287285 Subject . ProcessRootFolder ( new DirectoryInfo ( _droneFactory ) ) ;
288286
289287 Mocker . GetMock < IDiskProvider > ( )
@@ -347,8 +345,6 @@ public void should_not_delete_if_there_is_large_rar_file()
347345 Mocker . GetMock < IImportApprovedGame > ( )
348346 . Setup ( s => s . Import ( It . IsAny < List < ImportDecision > > ( ) , true , null , ImportMode . Auto ) )
349347 . Returns ( imported . Select ( i => new ImportResult ( i ) ) . ToList ( ) ) ;
350-
351-
352348 Mocker . GetMock < IDiskProvider > ( )
353349 . Setup ( s => s . GetFiles ( It . IsAny < string > ( ) , true ) )
354350 . Returns ( new [ ] { _videoFiles . First ( ) . Replace ( ".ext" , ".rar" ) } ) ;
@@ -450,8 +446,6 @@ public void should_not_delete_if_no_files_were_imported()
450446 Mocker . GetMock < IImportApprovedGame > ( )
451447 . Setup ( s => s . Import ( It . IsAny < List < ImportDecision > > ( ) , true , null , ImportMode . Auto ) )
452448 . Returns ( new List < ImportResult > ( ) ) ;
453-
454-
455449 Mocker . GetMock < IDiskProvider > ( )
456450 . Setup ( s => s . GetFileSize ( It . IsAny < string > ( ) ) )
457451 . Returns ( 15 . Megabytes ( ) ) ;
0 commit comments