You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/Http/Middleware/TrimStringsTest.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -106,13 +106,13 @@ public function test_combination_of_leading_and_trailing_zero_width_non_breakabl
106
106
$request = newRequest;
107
107
108
108
$request->merge([
109
-
'title' => 'This title contains a zero-width non-breakable space at the end',
109
+
'title' => 'This title contains a combination of zero-width non-breakable space and zero-widh spaces characters at the begining and the end',
110
110
]);
111
111
112
112
$middleware = newTrimStrings;
113
113
114
114
$middleware->handle($request, function ($req) {
115
-
$this->assertEquals('This title contains a zero-width non-breakable space at the end', $req->title);
115
+
$this->assertEquals('This title contains a combination of zero-width non-breakable space and zero-widh spaces characters at the begining and the end', $req->title);
0 commit comments