Changeset 44573 for trunk/tests/phpunit/tests/http/base.php
- Timestamp:
- 01/12/2019 06:05:55 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/http/base.php
r43571 r44573 14 14 // You can use your own version of data/WPHTTP-testcase-redirection-script.php here. 15 15 var $redirection_script = 'http://api.wordpress.org/core/tests/1.0/redirection.php'; 16 var $file StreamUrl= 'http://s.w.org/screenshots/3.9/dashboard.png';16 var $file_stream_url = 'http://s.w.org/screenshots/3.9/dashboard.png'; 17 17 18 18 protected $http_request_args; … … 255 255 256 256 function test_file_stream() { 257 $url = $this->file StreamUrl;257 $url = $this->file_stream_url; 258 258 $size = 153204; 259 259 $res = wp_remote_request( … … 283 283 */ 284 284 function test_file_stream_limited_size() { 285 $url = $this->file StreamUrl;285 $url = $this->file_stream_url; 286 286 $size = 10000; 287 287 $res = wp_remote_request( … … 312 312 */ 313 313 function test_request_limited_size() { 314 $url = $this->file StreamUrl;314 $url = $this->file_stream_url; 315 315 $size = 10000; 316 316
Note: See TracChangeset
for help on using the changeset viewer.