mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
episode detail is working but its a bit slow.
This commit is contained in:
parent
4a4e440ec0
commit
9a738e3a65
16 changed files with 72 additions and 64 deletions
|
@ -64,7 +64,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
var episodes = Builder<Episode>.CreateListOfSize(1)
|
||||
.All()
|
||||
.With(e => e.Series = series)
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
@ -96,7 +96,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
var episodes = Builder<Episode>.CreateListOfSize(5)
|
||||
.All()
|
||||
.With(e => e.Series = series)
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
@ -126,7 +126,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
.All()
|
||||
.With(e => e.Series = series)
|
||||
.With(e => e.SeasonNumber = 1)
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
@ -160,7 +160,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
.With(e => e.Series = series)
|
||||
.With(e => e.SeriesId = series.Id)
|
||||
.With(e => e.SeasonNumber = 1)
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
@ -202,7 +202,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
.With(e => e.SeasonNumber = 1)
|
||||
.TheNext(5)
|
||||
.With(e => e.Series = series2)
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
@ -243,7 +243,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
.With(e => e.SeasonNumber = 1)
|
||||
.TheLast(6)
|
||||
.With(e => e.Series = series[1])
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
@ -282,7 +282,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
.With(e => e.Series = series[1])
|
||||
.TheNext(5)
|
||||
.With(e => e.Series = series[2])
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
//WithEnableBacklogSearching();
|
||||
|
||||
|
@ -322,7 +322,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||
.With(e => e.Series = series[1])
|
||||
.TheNext(5)
|
||||
.With(e => e.Series = series[2])
|
||||
.Build();
|
||||
.Build().ToList();
|
||||
|
||||
WithEnableBacklogSearching();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue