From c6123a076f5f9310722a06421f33361d878a58d9 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 18 Jan 2021 13:17:10 -0500 Subject: [PATCH] Fix Tests from Site Image Changes --- src/NzbDrone.Common.Test/Http/HttpClientFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs index fc73ef90a..74bf49192 100644 --- a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs +++ b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs @@ -294,7 +294,7 @@ public void should_download_file() var fileInfo = new FileInfo(file); fileInfo.Exists.Should().BeTrue(); - fileInfo.Length.Should().Be(251536); + fileInfo.Length.Should().Be(270964); } [Test] @@ -312,7 +312,7 @@ public void should_download_file_with_redirect() var fileInfo = new FileInfo(file); fileInfo.Exists.Should().BeTrue(); - fileInfo.Length.Should().Be(251536); + fileInfo.Length.Should().Be(270964); } [Test]