From ed9a47449b10da0b91c0f4b2d0f95895e60a1804 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 26 Nov 2022 19:36:41 -0800 Subject: [PATCH] Fixed broken tests after updating images --- 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 820779277..4757f805d 100644 --- a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs +++ b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs @@ -375,7 +375,7 @@ namespace NzbDrone.Common.Test.Http var fileInfo = new FileInfo(file); - fileInfo.Length.Should().Be(307054); + fileInfo.Length.Should().Be(114770); } [Test] @@ -393,7 +393,7 @@ namespace NzbDrone.Common.Test.Http var fileInfo = new FileInfo(file); fileInfo.Exists.Should().BeTrue(); - fileInfo.Length.Should().Be(307054); + fileInfo.Length.Should().Be(114770); } [Test]