From ee3fd27d7dee42df83089fe9d5661a8fadfe5d9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 02:29:59 +0000 Subject: [PATCH 1/2] Bump AwesomeAssertions from 8.2.0 to 9.1.0 --- updated-dependencies: - dependency-name: AwesomeAssertions dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- EDILibraryTests/EDILibraryTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EDILibraryTests/EDILibraryTests.csproj b/EDILibraryTests/EDILibraryTests.csproj index 4f8c3a2..803106d 100644 --- a/EDILibraryTests/EDILibraryTests.csproj +++ b/EDILibraryTests/EDILibraryTests.csproj @@ -5,7 +5,7 @@ - + From 50082279ab6d514880d4ce435af2701b6169e925 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 1 Sep 2025 14:53:33 +0200 Subject: [PATCH 2/2] fix: import from AwesomeAssertions instead of legacy FluentAssertions --- EDILibraryTests/TemplateLoaderExtensionTests.cs | 2 +- EDILibraryTests/TestSpartenFinder.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/EDILibraryTests/TemplateLoaderExtensionTests.cs b/EDILibraryTests/TemplateLoaderExtensionTests.cs index a5e9d42..d90894e 100644 --- a/EDILibraryTests/TemplateLoaderExtensionTests.cs +++ b/EDILibraryTests/TemplateLoaderExtensionTests.cs @@ -1,9 +1,9 @@ using System; using System.Threading.Tasks; +using AwesomeAssertions; using EDILibrary; using EDILibrary.Interfaces; using EDILibrary.MAUS; -using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using NSubstitute; diff --git a/EDILibraryTests/TestSpartenFinder.cs b/EDILibraryTests/TestSpartenFinder.cs index ed52945..005824b 100644 --- a/EDILibraryTests/TestSpartenFinder.cs +++ b/EDILibraryTests/TestSpartenFinder.cs @@ -3,9 +3,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; +using AwesomeAssertions; using EDILibrary.Helper; using EDILibrary.Interfaces; -using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace EDILibraryTests