mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
fixed broken tests
This commit is contained in:
parent
67e55e5c39
commit
a986c2790d
2 changed files with 1 additions and 8 deletions
|
@ -90,13 +90,6 @@ public void newzbin_rss_fetch()
|
|||
ExceptionVerification.ExcpectedWarns(1);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void newzbing_rss_search()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
[Test]
|
||||
[TestCase("Adventure.Inc.S03E19.DVDRip.XviD-OSiTV", 3, 19, QualityTypes.DVD)]
|
||||
public void custome_parser_partial_success(string title, int season, int episode, QualityTypes quality)
|
||||
|
|
|
@ -106,7 +106,7 @@ public virtual Series FindSeries(string title)
|
|||
var normalizeTitle = Parser.NormalizeTitle(title);
|
||||
|
||||
var seriesId = SceneNameHelper.GetIdByName(normalizeTitle);
|
||||
if (seriesId != 0)
|
||||
if (seriesId != null)
|
||||
{
|
||||
return GetSeries(seriesId.Value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue