diff --git a/Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj b/Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj index 0cc0f38..a1c77c0 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 584f61d..7643bc9 100644 --- a/Tests/Approval.Tests/Approval.Tests.csproj +++ b/Tests/Approval.Tests/Approval.Tests.csproj @@ -5,7 +5,7 @@ - + diff --git a/Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs b/Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs deleted file mode 100644 index 6115b79..0000000 --- a/Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs +++ /dev/null @@ -1,19 +0,0 @@ -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; - } -}