From d0952d4a0ccde81184694fc42c37057ea79f74e1 Mon Sep 17 00:00:00 2001 From: Robin Dadswell Date: Mon, 18 Jan 2021 23:57:13 +0000 Subject: [PATCH] fixed small test issue --- src/NzbDrone.Common.Test/Http/HttpClientFixture.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs index 3bc18cb68..9b3e84046 100644 --- a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs +++ b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs @@ -318,9 +318,8 @@ public void should_not_download_file_with_error() Assert.Throws(() => Subject.DownloadFile("https://download.readarr.com/wrongpath", file)); File.Exists(file).Should().BeFalse(); - File.Exists(file + ".part").Should().BeFalse(); - ExceptionVerification.ExpectedWarns(0); + ExceptionVerification.ExpectedWarns(1); } [Test]