From ad446b358e23f0095bbf0185dfb688e9d82645d9 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 13 Aug 2023 14:17:32 +0300 Subject: [PATCH] Fix combined search tests --- .../MetadataSource/BookInfo/BookInfoProxySearchFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core.Test/MetadataSource/BookInfo/BookInfoProxySearchFixture.cs b/src/NzbDrone.Core.Test/MetadataSource/BookInfo/BookInfoProxySearchFixture.cs index 6489756c2..026bb9a8d 100644 --- a/src/NzbDrone.Core.Test/MetadataSource/BookInfo/BookInfoProxySearchFixture.cs +++ b/src/NzbDrone.Core.Test/MetadataSource/BookInfo/BookInfoProxySearchFixture.cs @@ -85,8 +85,8 @@ namespace NzbDrone.Core.Test.MetadataSource.Goodreads ExceptionVerification.IgnoreWarns(); } - [TestCase("Catherine Butler", 0, typeof(Author), new[] { "Catherine Butler" }, TestName = "author")] - [TestCase("Catherine Butler", 1, typeof(Book), new[] { "Twisted Winter", "Shattered Dreams" }, TestName = "book")] + [TestCase("Roald Dahl", 0, typeof(Author), new[] { "Roald Dahl" }, TestName = "author")] + [TestCase("Roald Dahl", 1, typeof(Book), new[] { "Boy: Tales of Childhood" }, TestName = "book")] public void successful_combined_search(string query, int position, Type resultType, string[] expected) { var result = Subject.SearchForNewEntity(query);