Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.6k
[HttpClient][WebProfilerBundle] Do not generate cURL command when files are uploaded#52472
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Up to fix the quote issue in the same PR for tests? |
@nicolas-grekas I'm not sure what should be done regarding these double quotes since it seems to be Windows-specific 🤔 |
I think we should just adjust the expected output depending on Windows or not. Failing tests should pass. |
Or maybe@alexandre-daubois can provide the fix for the tests? |
Thank you@MatTheCat. |
I'll look into it tomorrow if@alexandre-daubois hasn't in the meantime. |
alexandre-daubois commentedNov 6, 2023 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Thank you for proposing your help Mathieu! Trying to understand what I missed in my PR 😄 |
From what I saw (did not investigate further), |
…-daubois)This PR was merged into the 6.3 branch.Discussion----------[HttpKernel] Fix quotes expectations in tests| Q | A| ------------- | ---| Branch? | 6.3| Bug fix? | yes| New feature? | no| Deprecations? | no| Issues | -| License | MITFollowing#52472 (comment)On Windows, quotes are only added when necessary. This means that for a value like `foobar`, no quotes are added. I updated the test so the first dataset shows the escaping whereas the second updated dataset shows that it is expected that no quotes are added around data.Commits-------dcc465f [HttpKernel] Fix quotes expectations in tests
Uh oh!
There was an error while loading.Please reload this page.
I also removed
@requires extension openssl
annotations since that does not seem to be the case since#45729.Failures in AppVeyor occur because double quotes are missing around
--data-raw
values. Possibly related to#52429.