diff --git a/NzbDrone.Core.Test/JobTests/SeriesSearchJobTest.cs b/NzbDrone.Core.Test/JobTests/SeriesSearchJobTest.cs index 8b527ee20..47961d3ba 100644 --- a/NzbDrone.Core.Test/JobTests/SeriesSearchJobTest.cs +++ b/NzbDrone.Core.Test/JobTests/SeriesSearchJobTest.cs @@ -23,7 +23,7 @@ namespace NzbDrone.Core.Test.JobTests var notification = new ProgressNotification("Series Search"); - Mocker.GetMock() + Mocker.GetMock() .Setup(c => c.GetSeasons(1)).Returns(seasons); Mocker.GetMock() @@ -50,7 +50,7 @@ namespace NzbDrone.Core.Test.JobTests var notification = new ProgressNotification("Series Search"); - Mocker.GetMock() + Mocker.GetMock() .Setup(c => c.GetSeasons(1)).Returns(seasons); //Act @@ -65,7 +65,7 @@ namespace NzbDrone.Core.Test.JobTests [Test] public void SeriesSearch_should_not_search_for_season_0() { - Mocker.GetMock() + Mocker.GetMock() .Setup(c => c.GetSeasons(It.IsAny())) .Returns(new List { 0, 1, 2 });