From: Stephen Toub Date: Wed, 1 May 2019 02:04:13 +0000 (-0400) Subject: Fix order of "static public" in test file X-Git-Tag: submit/tizen/20210909.063632~11031^2~1728 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60883a796a7d3dbc12c3d4a5b7e1955e800e8ef0;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix order of "static public" in test file Commit migrated from https://github.com/dotnet/corefx/commit/ebba368b0f5e37cf12a22774b90cb54600ce6760 --- 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))]