Fix order of "static public" in test file
authorStephen Toub <stoub@microsoft.com>
Wed, 1 May 2019 02:04:13 +0000 (22:04 -0400)
committerGitHub <noreply@github.com>
Wed, 1 May 2019 02:04:13 +0000 (22:04 -0400)
Commit migrated from https://github.com/dotnet/corefx/commit/ebba368b0f5e37cf12a22774b90cb54600ce6760

src/libraries/System.Linq.Parallel/tests/Combinatorial/ParallelQueryCombinationTests.cs

index c26c928..1dc6a06 100644 (file)
@@ -12,7 +12,7 @@ namespace System.Linq.Parallel.Tests
     public static partial class ParallelQueryCombinationTests
     {
         // on ARM platforms many available cores makes this unbearably slow: #36494
-        static public bool RunSlowTests => PlatformDetection.IsNotArmNorArm64Process || Environment.ProcessorCount <= 8;
+        public static bool RunSlowTests => PlatformDetection.IsNotArmNorArm64Process || Environment.ProcessorCount <= 8;
 
         [Theory]
         [MemberData(nameof(UnaryOperations))]