Skip to content

Commit d944c70

Browse files
committed
Make TestAssemblyRunner .net core friendly
1 parent dc2afc0 commit d944c70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tests/Framework/Xunit/TestAssemblyRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ orderby g.Count() descending
7070
var type = group.Key?.GetType();
7171
var clusterName = type?.Name.Replace("Cluster", "") ?? "UNKNOWN";
7272

73-
if (!string.IsNullOrWhiteSpace(clusterFilter) && !string.Equals(clusterName, clusterFilter, StringComparison.InvariantCultureIgnoreCase))
73+
if (!string.IsNullOrWhiteSpace(clusterFilter) && !string.Equals(clusterName, clusterFilter, StringComparison.OrdinalIgnoreCase))
7474
continue;
7575

7676
var dop = group.Key != null && group.Key.MaxConcurrency > 0

0 commit comments

Comments
 (0)