-
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
Fix failing SetCookies_Success test #53932
Conversation
Tagging subscribers to this area: @dotnet/ncl |
The reason why it fails is because of this: runtime/src/libraries/System.Net.Primitives/tests/UnitTests/CookieContainerTest.cs Line 132 in 78579ef
Can you bump the Expires to some later date? 😄 |
WHAT THA HELL. Best test failure EVER 😂😂😂 |
Hello @ViktorHofer! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
@@ -125,11 +125,11 @@ public static IEnumerable<object[]> SetCookiesData() | |||
yield return new object[] | |||
{ | |||
u, | |||
"name98=value98; path=/; domain=.uri.com; expires=Wed, 09 Jun 2021 10:18:14 GMT, name99=value99", | |||
"name98=value98; path=/; domain=.uri.com; expires=Wed, 09 Jun 2050 10:18:14 GMT, name99=value99", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll be really excited if this test is still running in 29 years and fails then.
Merging to unblock CI. |
* Fix failing SetCookies_Success test
See #53931