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()
223
223
{
224
224
return [
225
225
[
226
- ' <html><head></head><body>Test</body></html> ' , // Ascii text
226
+ " <html><head></head><body>Test</body></html> " , // Ascii text
227
227
43 // Expected Content-Length
228
228
],
229
229
[
230
- ' <html><head></head><body>部落格</body></html> ' , // Multi-byte characters
230
+ " <html><head></head><body>部落格</body></html> " , // Multi-byte characters
231
231
48 // Expected Content-Length
232
232
],
233
233
[
234
- ' <html><head></head><body> ' . chr ( 0 ). ' </body></html> ' , // Null byte
234
+ " <html><head></head><body> \0 </body></html> " , // Null byte
235
235
40 // Expected Content-Length
236
236
],
237
237
[
238
- ' <html><head></head>خرید<body></body></html> ' , // LTR text
238
+ " <html><head></head>خرید<body></body></html> " , // LTR text
239
239
47 // Expected Content-Length
240
240
]
241
241
];
You can’t perform that action at this time.
0 commit comments