From 8681f3b4471fedbfb1173ae3ab10d3467eaf43d2 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 13 Oct 2020 12:47:13 -0400 Subject: [PATCH] Fix lint issues on backend --- src/NzbDrone.Automation.Test/MainPagesTest.cs | 2 +- src/NzbDrone.Integration.Test/Client/LogsClient.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Automation.Test/MainPagesTest.cs b/src/NzbDrone.Automation.Test/MainPagesTest.cs index 8cddb26b7..939dca1be 100644 --- a/src/NzbDrone.Automation.Test/MainPagesTest.cs +++ b/src/NzbDrone.Automation.Test/MainPagesTest.cs @@ -25,7 +25,7 @@ namespace NzbDrone.Automation.Test var imageName = MethodBase.GetCurrentMethod().Name; TakeScreenshot(imageName); - + _page.Find(By.CssSelector("div[class*='ArtistIndex']")).Should().NotBeNull(); } diff --git a/src/NzbDrone.Integration.Test/Client/LogsClient.cs b/src/NzbDrone.Integration.Test/Client/LogsClient.cs index 10a43b568..f22961c86 100644 --- a/src/NzbDrone.Integration.Test/Client/LogsClient.cs +++ b/src/NzbDrone.Integration.Test/Client/LogsClient.cs @@ -34,6 +34,7 @@ namespace NzbDrone.Integration.Test.Client _logger.Error(ex, "Failed to get log lines"); throw; } + _logger.Info(ex, "Failed to get log lines, attempt {0}/{1}", attempt, attempts); Thread.Sleep(10); attempt++;