mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
New: Readarr 0.1
This commit is contained in:
@@ -12,16 +12,16 @@ namespace NzbDrone.Core.Test.DecisionEngineTests.Search
|
||||
[TestFixture]
|
||||
public class ArtistSpecificationFixture : TestBase<ArtistSpecification>
|
||||
{
|
||||
private Artist _artist1;
|
||||
private Artist _artist2;
|
||||
private Author _artist1;
|
||||
private Author _artist2;
|
||||
private RemoteAlbum _remoteAlbum = new RemoteAlbum();
|
||||
private SearchCriteriaBase _searchCriteria = new AlbumSearchCriteria();
|
||||
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
{
|
||||
_artist1 = Builder<Artist>.CreateNew().With(s => s.Id = 1).Build();
|
||||
_artist2 = Builder<Artist>.CreateNew().With(s => s.Id = 2).Build();
|
||||
_artist1 = Builder<Author>.CreateNew().With(s => s.Id = 1).Build();
|
||||
_artist2 = Builder<Author>.CreateNew().With(s => s.Id = 2).Build();
|
||||
|
||||
_remoteAlbum.Artist = _artist1;
|
||||
}
|
||||
|
||||
+2
-2
@@ -15,14 +15,14 @@ namespace NzbDrone.Core.Test.DecisionEngineTests.Search
|
||||
[TestFixture]
|
||||
public class TorrentSeedingSpecificationFixture : TestBase<TorrentSeedingSpecification>
|
||||
{
|
||||
private Artist _artist;
|
||||
private Author _artist;
|
||||
private RemoteAlbum _remoteAlbum;
|
||||
private IndexerDefinition _indexerDefinition;
|
||||
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
{
|
||||
_artist = Builder<Artist>.CreateNew().With(s => s.Id = 1).Build();
|
||||
_artist = Builder<Author>.CreateNew().With(s => s.Id = 1).Build();
|
||||
|
||||
_remoteAlbum = new RemoteAlbum
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user