mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-13 01:34:57 +00:00
Update FluentAssertion to 1.6
This commit is contained in:
parent
994ea7f090
commit
5aecd63d09
2 changed files with 3 additions and 2 deletions
|
@ -234,11 +234,13 @@ public void newzbin_search_returns_valid_results(string title, int season, int e
|
|||
var result = mocker.Resolve<Newzbin>().FetchEpisode(title, season, episode);
|
||||
|
||||
ExceptionVerification.MarkInconclusive(typeof(WebException));
|
||||
|
||||
ExceptionVerification.IgnoreWarns();
|
||||
result.Should().NotBeEmpty();
|
||||
result.Should().OnlyContain(r => r.CleanTitle == Parser.NormalizeTitle(title));
|
||||
result.Should().OnlyContain(r => r.SeasonNumber == season);
|
||||
result.Should().OnlyContain(r => r.EpisodeNumbers.Contains(episode));
|
||||
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
using System.Xml.Linq;
|
||||
using System.Xml.XPath;
|
||||
using NLog;
|
||||
using NLog.Config;
|
||||
using Ninject;
|
||||
using NzbDrone.Common;
|
||||
using NzbDrone.Model;
|
||||
|
|
Loading…
Reference in a new issue