From b3f314428ebc3cdfdcc214faf0c83e79a90458d6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 02:10:44 +0000 Subject: [PATCH] chore(deps): update all dependencies --- .config/dotnet-tools.json | 2 +- Directory.Packages.props | 6 +++--- global.json | 2 +- tests/Tests/Unit/Logic/ImageProcessorTests.cs | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 6244ea1..bb373ba 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -15,7 +15,7 @@ ] }, "dotnet-sonarscanner": { - "version": "9.2.0", + "version": "9.2.1", "commands": [ "dotnet-sonarscanner" ], diff --git a/Directory.Packages.props b/Directory.Packages.props index a997545..81e6f12 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -10,7 +10,7 @@ - + @@ -26,8 +26,8 @@ - - + + diff --git a/global.json b/global.json index 73e4a60..5651297 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.101", + "version": "9.0.200", "rollForward": "latestPatch" } } \ No newline at end of file diff --git a/tests/Tests/Unit/Logic/ImageProcessorTests.cs b/tests/Tests/Unit/Logic/ImageProcessorTests.cs index 01e5eea..1b47b24 100644 --- a/tests/Tests/Unit/Logic/ImageProcessorTests.cs +++ b/tests/Tests/Unit/Logic/ImageProcessorTests.cs @@ -22,7 +22,7 @@ public async Task ProcessImage() var result = await testee.ProcessAsync("testData/Screenshot.png", false, false); // Assert - result.Data.Should().HaveCount(26121); + result.Data.Should().HaveCount(26152); result.MediaType.Should().Be("image/png"); } @@ -36,7 +36,7 @@ public async Task ProcessImage_ShouldCreateBlackWhiteImage() var result = await testee.ProcessAsync("testData/Screenshot.png", true, false); // Assert - result.Data.Should().HaveCount(3245); + result.Data.Should().HaveCount(3276); result.MediaType.Should().Be("image/png"); new MagickImage(result.Data).GetPixels().Select(pixel => pixel.GetChannel(0)).Distinct().Should().BeEquivalentTo(new List { 0, 65535 }); }