From 06e37fa7d58d3634c3882704629cdbe3bcc15adc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 16:01:29 +0000 Subject: [PATCH 1/2] Bump FluentAssertions from 8.0.0 to 8.0.1 Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 8.0.0 to 8.0.1. - [Release notes](https://github.com/fluentassertions/fluentassertions/releases) - [Changelog](https://github.com/fluentassertions/fluentassertions/blob/main/AcceptApiChanges.ps1) - [Commits](https://github.com/fluentassertions/fluentassertions/compare/8.0.0...8.0.1) --- updated-dependencies: - dependency-name: FluentAssertions dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj | 2 +- Tests/Approval.Tests/Approval.Tests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj b/Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj index a1c77c0..0cc0f38 100644 --- a/Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj +++ b/Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj @@ -41,7 +41,7 @@ - + diff --git a/Tests/Approval.Tests/Approval.Tests.csproj b/Tests/Approval.Tests/Approval.Tests.csproj index 7643bc9..584f61d 100644 --- a/Tests/Approval.Tests/Approval.Tests.csproj +++ b/Tests/Approval.Tests/Approval.Tests.csproj @@ -5,7 +5,7 @@ - + From 5ecdcbb77d857eae9397cb367f4ca4e2a2d98011 Mon Sep 17 00:00:00 2001 From: Jonas Nyrup Date: Mon, 27 Jan 2025 17:47:34 +0100 Subject: [PATCH 2/2] Accept license --- .../AcceptLicense.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs diff --git a/Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs b/Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs new file mode 100644 index 0000000..6115b79 --- /dev/null +++ b/Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs @@ -0,0 +1,19 @@ +using FluentAssertions.DataSets.Specs; +using FluentAssertions.Extensibility; + +[assembly: AssertionEngineInitializer( + typeof(AcceptLicense), + nameof(AcceptLicense.Initialize))] + +namespace FluentAssertions.DataSets.Specs; + +public static class AcceptLicense +{ + // ReSharper disable once UnusedMember.Global +#pragma warning disable CA1822 + public static void Initialize() +#pragma warning restore CA1822 + { + License.Accepted = true; + } +}