Skip to content

Commit b9698ae

Browse files
committed
fix the build on .net core
1 parent 4f7c075 commit b9698ae

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)