Skip to content

Commit 86093a7

Browse files
committed
fix assembly test runner filter that was committed
1 parent 30ac823 commit 86093a7

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
@@ -66,7 +66,7 @@ orderby g.Count() descending
6666
var clusterTotals = new Dictionary<string, Stopwatch>();
6767
foreach (var group in grouped)
6868
{
69-
if (group.Key?.GetType() != typeof(WritableCluster)) continue;
69+
//if (group.Key?.GetType() != typeof(WritableCluster)) continue;
7070
var type = group.Key?.GetType();
7171
var clusterName = type?.Name.Replace("Cluster", "") ?? "UNKNOWN";
7272
var dop = group.Key != null && group.Key.MaxConcurrency > 0

0 commit comments

Comments
 (0)