mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Fixed bug with RSS Item TIitle.
Fixed broken tests.
This commit is contained in:
@@ -183,6 +183,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
||||
.All()
|
||||
.With(e => e.SeasonNumber = 1)
|
||||
.With(e => e.EpisodeNumbers = new List<int> { 1 })
|
||||
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
||||
.Build();
|
||||
|
||||
WithNullSeries();
|
||||
@@ -205,6 +206,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
||||
.All()
|
||||
.With(e => e.SeasonNumber = 1)
|
||||
.With(e => e.EpisodeNumbers = new List<int> { 1 })
|
||||
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
||||
.Build();
|
||||
|
||||
WithMisMatchedSeries();
|
||||
@@ -227,6 +229,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
||||
.All()
|
||||
.With(e => e.SeasonNumber = 2)
|
||||
.With(e => e.EpisodeNumbers = new List<int> { 1 })
|
||||
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
||||
.Build();
|
||||
|
||||
WithMatchingSeries();
|
||||
@@ -249,6 +252,7 @@ namespace NzbDrone.Core.Test.ProviderTests.SearchProviderTests
|
||||
.All()
|
||||
.With(e => e.SeasonNumber = 1)
|
||||
.With(e => e.EpisodeNumbers = new List<int> { 2 })
|
||||
.With(e => e.Quality = new Quality(QualityTypes.HDTV, false))
|
||||
.Build();
|
||||
|
||||
WithMatchingSeries();
|
||||
|
||||
Reference in New Issue
Block a user