Changeset 57908
- Timestamp:
- 04/01/2024 05:16:55 PM (7 months ago)
- Location:
- branches/6.5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.5
- Property svn:mergeinfo changed
/trunk merged: 57903-57904
- Property svn:mergeinfo changed
-
branches/6.5/tests/phpunit/tests/functions/wpRemoteFopen.php
r56971 r57908 28 28 public function test_wp_remote_fopen() { 29 29 // This URL gives a direct 200 response. 30 $url = 'https://asdftestblog1. files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';30 $url = 'https://asdftestblog1.wordpress.com/wp-content/uploads/2007/09/2007-06-30-dsc_4700-1.jpg'; 31 31 $response = wp_remote_fopen( $url ); 32 32 -
branches/6.5/tests/phpunit/tests/http/functions.php
r55210 r57908 12 12 public function test_head_request() { 13 13 // This URL gives a direct 200 response. 14 $url = 'https://asdftestblog1. files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';14 $url = 'https://asdftestblog1.wordpress.com/wp-content/uploads/2007/09/2007-06-30-dsc_4700-1.jpg'; 15 15 $response = wp_remote_head( $url ); 16 16 … … 42 42 */ 43 43 public function test_head_404() { 44 $url = 'https://asdftestblog1. files.wordpress.com/2007/09/awefasdfawef.jpg';44 $url = 'https://asdftestblog1.wordpress.com/wp-content/uploads/2007/09/awefasdfawef.jpg'; 45 45 $response = wp_remote_head( $url ); 46 46
Note: See TracChangeset
for help on using the changeset viewer.