- Timestamp:
- 04/07/2024 09:45:23 PM (8 months ago)
- Location:
- branches/6.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.2
-
branches/6.2/tests/phpunit/tests/functions/wpRemoteFopen.php
r51331 r57940 27 27 public function test_wp_remote_fopen() { 28 28 // This URL gives a direct 200 response. 29 $url = 'https:// asdftestblog1.files.wordpress.com/2007/09/2007-06-30-dsc_4700-1.jpg';29 $url = 'https://s.w.org/screenshots/3.9/dashboard.png'; 30 30 $response = wp_remote_fopen( $url ); 31 31 32 32 $this->assertIsString( $response ); 33 $this->assertSame( 40148, strlen( $response ) );33 $this->assertSame( 153204, strlen( $response ) ); 34 34 } 35 35 }
Note: See TracChangeset
for help on using the changeset viewer.