Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Merge pull request #11536 from Clockwork-Muse/PLINQ_Union_Fix
Browse files Browse the repository at this point in the history
PLINQ - Union Combinatorial tests fix
  • Loading branch information
stephentoub authored Sep 9, 2016
2 parents 09db554 + 380acc5 commit e34ffcd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ public static void Union(Labeled<Operation> source, Labeled<Operation> operation
}
Assert.Equal(DefaultStart + DefaultSize, seen);
};
union(operation.Item, DefaultSource);
union(operation.Item, LabeledDefaultSource.AsOrdered().Item);
union(LabeledDefaultSource.AsOrdered().Item, operation.Item);
}

Expand All @@ -1413,7 +1413,7 @@ public static void Union_NotPipelined(Labeled<Operation> source, Labeled<Operati
Assert.All(query.ToList(), x => Assert.Equal(seen++, x));
Assert.Equal(DefaultStart + DefaultSize, seen);
};
union(operation.Item, DefaultSource);
union(operation.Item, LabeledDefaultSource.AsOrdered().Item);
union(LabeledDefaultSource.AsOrdered().Item, operation.Item);
}

Expand Down

0 comments on commit e34ffcd

Please sign in to comment.