mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
New: Readarr 0.1
This commit is contained in:
@@ -11,17 +11,17 @@ namespace NzbDrone.Core.Test.MetadataSource
|
||||
[TestFixture]
|
||||
public class SearchArtistComparerFixture : CoreTest
|
||||
{
|
||||
private List<Artist> _artist;
|
||||
private List<Author> _artist;
|
||||
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
{
|
||||
_artist = new List<Artist>();
|
||||
_artist = new List<Author>();
|
||||
}
|
||||
|
||||
private void WithSeries(string name)
|
||||
{
|
||||
_artist.Add(new Artist { Name = name });
|
||||
_artist.Add(new Author { Name = name });
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
||||
Reference in New Issue
Block a user