8000 [9.x] Fix TrimStrings middleware with non-UTF8 characters by MrMicky-FR · Pull Request #42065 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Fix TrimStrings middleware with non-UTF8 characters #42065

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

Merged
merged 2 commits into from
Apr 21, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Whitespace
This will trigger the tests again
  • Loading branch information
MrMicky-FR committed Apr 20, 2022
commit 0a78a6b8447ae2ab0f87d3468059fb9865f60f78
2 changes: 1 addition & 1 deletion tests/Foundation/Http/Middleware/TrimStringsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function testTrimStringsNBSP()
'foo' => 'ム',
'bar' => '  だ   ',
'baz' => '  ム   ',
'binary' => " \xE9 ",
'binary' => " \xE9 ",
]);
$symfonyRequest->server->set('REQUEST_METHOD', 'GET');
$request = Request::createFromBase($symfonyRequest);
Expand Down
0