From 6273d69ed61a0dfc71af953e36f6f79fa47b0e1c Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 4 Oct 2023 05:50:57 +0300 Subject: [PATCH] Fix tests --- src/NzbDrone.Integration.Test/ApiTests/AuthorLookupFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Integration.Test/ApiTests/AuthorLookupFixture.cs b/src/NzbDrone.Integration.Test/ApiTests/AuthorLookupFixture.cs index 5dfa33ffc..10c37c476 100644 --- a/src/NzbDrone.Integration.Test/ApiTests/AuthorLookupFixture.cs +++ b/src/NzbDrone.Integration.Test/ApiTests/AuthorLookupFixture.cs @@ -19,7 +19,7 @@ public void lookup_new_author_by_name(string term, string name) [Test] public void lookup_new_author_by_goodreads_book_id() { - var author = Author.Lookup("edition:1"); + var author = Author.Lookup("edition:2"); author.Should().NotBeEmpty(); author.Should().Contain(c => c.AuthorName == "J.K. Rowling");