From 60883a796a7d3dbc12c3d4a5b7e1955e800e8ef0 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Tue, 30 Apr 2019 22:04:13 -0400 Subject: [PATCH] Fix order of "static public" in test file Commit migrated from https://github.com/dotnet/corefx/commit/ebba368b0f5e37cf12a22774b90cb54600ce6760 --- .../tests/Combinatorial/ParallelQueryCombinationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Linq.Parallel/tests/Combinatorial/ParallelQueryCombinationTests.cs b/src/libraries/System.Linq.Parallel/tests/Combinatorial/ParallelQueryCombinationTests.cs index c26c928..1dc6a06 100644 --- a/src/libraries/System.Linq.Parallel/tests/Combinatorial/ParallelQueryCombinationTests.cs +++ b/src/libraries/System.Linq.Parallel/tests/Combinatorial/ParallelQueryCombinationTests.cs @@ -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))] -- 2.7.4