From 737bde0c5c093e05fac8b54a8ea2a4f750fb93ef Mon Sep 17 00:00:00 2001 From: ta264 Date: Tue, 25 Aug 2020 22:20:04 +0100 Subject: [PATCH] Fix test --- .../MetadataSource/Goodreads/GoodreadsProxySearchFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core.Test/MetadataSource/Goodreads/GoodreadsProxySearchFixture.cs b/src/NzbDrone.Core.Test/MetadataSource/Goodreads/GoodreadsProxySearchFixture.cs index f514554dc..a8cc62349 100644 --- a/src/NzbDrone.Core.Test/MetadataSource/Goodreads/GoodreadsProxySearchFixture.cs +++ b/src/NzbDrone.Core.Test/MetadataSource/Goodreads/GoodreadsProxySearchFixture.cs @@ -76,8 +76,8 @@ namespace NzbDrone.Core.Test.MetadataSource.Goodreads ExceptionVerification.IgnoreWarns(); } - [TestCase("Robert Harris", 0, typeof(Author), "Robert Harris")] - [TestCase("Robert Harris", 1, typeof(Book), "An Officer and a Spy")] + [TestCase("Philip Pullman", 0, typeof(Author), "Philip Pullman")] + [TestCase("Philip Pullman", 1, typeof(Book), "The Golden Compass")] public void successful_combined_search(string query, int position, Type resultType, string expected) { var result = Subject.SearchForNewEntity(query);