New: Readarr 0.1

This commit is contained in:
ta264
2020-05-06 21:14:11 +01:00
parent 476f2d6047
commit 08496c82af
911 changed files with 14837 additions and 24442 deletions
@@ -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]