-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use AssertExtensions.SequenceEqual in a few places #52054
Conversation
Tagging subscribers to this area: @dotnet/ncl Issue DetailsRelated to #51480 Use AssertExtensions.SequenceEqual in a few places in the tests.
|
/azp run runtime-libraries-coreclr outerloop |
Azure Pipelines successfully started running 1 pipeline(s). |
The |
We should always use |
@dotnet/dnceng Getting errors from Azure DevOps, is this a known issue? |
Yes. We ran into a problem with the AzDO DB. We are tracking this in https://github.com/dotnet/core-eng/issues/12969 |
that make sense. |
This should no longer be the case with .NET 6. Are you still seeing that? |
Scratch that, the Assert.Equal implementation looks to be different than i remember it. I could have sworn it was using Enumerable.SequenceEqual, which has addressed this problem. But a quick code inspection suggests it may not be. |
/azp run runtime-libraries-coreclr outerloop |
Azure Pipelines successfully started running 1 pipeline(s). |
Related to #51480
Use AssertExtensions.SequenceEqual in a few places in the System.Net.Sockets tests.
Also some minor style/spelling cleanup.
@antonfirsov