mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
moved naming specification out of general config.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using System.Linq;
|
||||
using FizzWare.NBuilder;
|
||||
using Moq;
|
||||
using NUnit.Framework;
|
||||
@@ -174,7 +174,7 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
|
||||
Mocker.GetMock<IMediaFileService>()
|
||||
.Setup(p => p.GetFilesBySeries(seriesId))
|
||||
.Returns(episodesFiles);
|
||||
.Returns(episodesFiles.ToList());
|
||||
|
||||
Mocker.GetMock<ISeasonRepository>()
|
||||
.Setup(p => p.GetSeasonNumbers(seriesId))
|
||||
@@ -200,7 +200,7 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
|
||||
Mocker.GetMock<IMediaFileService>()
|
||||
.Setup(p => p.GetFilesBySeries(seriesId))
|
||||
.Returns(episodesFiles);
|
||||
.Returns(episodesFiles.ToList());
|
||||
|
||||
Mocker.GetMock<ISeasonRepository>()
|
||||
.Setup(p => p.GetSeasonNumbers(seriesId))
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace NzbDrone.Core.Test.JobTests
|
||||
|
||||
Mocker.GetMock<IMediaFileService>()
|
||||
.Setup(s => s.GetFilesBySeason(_series.Id, 5))
|
||||
.Returns(_episodeFiles);
|
||||
.Returns(_episodeFiles.ToList());
|
||||
}
|
||||
|
||||
private void WithMovedFiles()
|
||||
|
||||
Reference in New Issue
Block a user