Fix broken test

This commit is contained in:
Mark McDowall 2020-03-22 10:45:54 -07:00
parent 37ad801065
commit 84b9488cfb
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ namespace NzbDrone.Core.Test.DecisionEngineTests
public void should_return_false_if_episode_is_not_monitored_for_season_search()
{
WithFirstEpisodeUnmonitored();
_monitoredEpisodeSpecification.IsSatisfiedBy(_parseResultSingle, new SeasonSearchCriteria()).Accepted.Should().BeFalse();
_monitoredEpisodeSpecification.IsSatisfiedBy(_parseResultSingle, new SeasonSearchCriteria { MonitoredEpisodesOnly = true}).Accepted.Should().BeFalse();
}
[Test]