From c42de83a880124190b9b448125bc97ff8b2a976e Mon Sep 17 00:00:00 2001 From: Tomasz Buchholz Date: Wed, 13 Nov 2024 13:07:06 +0100 Subject: [PATCH] Remove CA1861 suppression --- ProjectEuler.Tests/Problems/001-100/61-70/Problem064Tests.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/ProjectEuler.Tests/Problems/001-100/61-70/Problem064Tests.cs b/ProjectEuler.Tests/Problems/001-100/61-70/Problem064Tests.cs index 12f69b4..7d42c6f 100644 --- a/ProjectEuler.Tests/Problems/001-100/61-70/Problem064Tests.cs +++ b/ProjectEuler.Tests/Problems/001-100/61-70/Problem064Tests.cs @@ -8,8 +8,6 @@ public class Problem064Tests : ProblemTestBase public override string Answer => "1322"; - // https://github.com/dotnet/roslyn-analyzers/issues/7033 -#pragma warning disable CA1861 // Avoid constant arrays as arguments [Theory] [InlineData(2, 1, new[] { 2 })] [InlineData(3, 1, new[] { 1, 2 })] @@ -22,7 +20,6 @@ public class Problem064Tests : ProblemTestBase [InlineData(12, 3, new[] { 2, 6 })] [InlineData(13, 3, new[] { 1, 1, 1, 1, 6 })] [InlineData(23, 4, new[] { 1, 3, 1, 8 })] -#pragma warning restore CA1861 // Avoid constant arrays as arguments public void Should_ExpandExamples(int power, int expectedFirstInteger, int[] expectedPeriod) { // Act