Changeset 43571 for trunk/tests/phpunit/tests/http/base.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/http/base.php
r43512 r43571 138 138 // Redirections on HEAD request when Requested 139 139 $res = wp_remote_request( 140 $this->redirection_script . '?rt=' . 5, array( 140 $this->redirection_script . '?rt=' . 5, 141 array( 141 142 'redirection' => 5, 142 143 'method' => 'HEAD', … … 209 210 // Test 301 - POST to POST 210 211 $res = wp_remote_request( 211 $url, array( 212 $url, 213 array( 212 214 'method' => 'PUT', 213 215 'timeout' => 30, … … 256 258 $size = 153204; 257 259 $res = wp_remote_request( 258 $url, array( 260 $url, 261 array( 259 262 'stream' => true, 260 263 'timeout' => 30, … … 283 286 $size = 10000; 284 287 $res = wp_remote_request( 285 $url, array( 288 $url, 289 array( 286 290 'stream' => true, 287 291 'timeout' => 30, … … 312 316 313 317 $res = wp_remote_request( 314 $url, array( 318 $url, 319 array( 315 320 'timeout' => 30, 316 321 'limit_response_size' => $size,
Note: See TracChangeset
for help on using the changeset viewer.