File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/internal/Magento/Framework/App/Test/Unit Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -223,19 +223,19 @@ public function dataProviderForTestLaunchHeadRequest()
223223 {
224224 return [
225225 [
226- ' <html><head></head><body>Test</body></html> ' , // Ascii text
226+ " <html><head></head><body>Test</body></html> " , // Ascii text
227227 43 // Expected Content-Length
228228 ],
229229 [
230- ' <html><head></head><body>部落格</body></html> ' , // Multi-byte characters
230+ " <html><head></head><body>部落格</body></html> " , // Multi-byte characters
231231 48 // Expected Content-Length
232232 ],
233233 [
234- ' <html><head></head><body> ' . chr ( 0 ). ' </body></html> ' , // Null byte
234+ " <html><head></head><body> \0 </body></html> " , // Null byte
235235 40 // Expected Content-Length
236236 ],
237237 [
238- ' <html><head></head>خرید<body></body></html> ' , // LTR text
238+ " <html><head></head>خرید<body></body></html> " , // LTR text
239239 47 // Expected Content-Length
240240 ]
241241 ];
You can’t perform that action at this time.
0 commit comments