Changeset 54074 for trunk/tests/phpunit/tests/external-http/basic.php
- Timestamp:
- 09/05/2022 09:14:38 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/external-http/basic.php
r53435 r54074 11 11 */ 12 12 public function test_readme_php_version() { 13 $this->markTestSkipped( 14 'Temporarily disabled. Test should be re-enabled once WordPress is fully compatible with PHP 8.0+.' 15 ); 16 13 17 // This test is designed to only run on trunk. 14 18 $this->skipOnAutomatedBranches(); … … 22 26 preg_match_all( '#<tr class="stable">\s*<td>\s*<a [^>]*>\s*([0-9.]*)#s', $response_body, $php_matches ); 23 27 24 // TODO: Enable this check once PHP 8.0 compatibility is achieved. 25 // $this->assertContains( $matches[1], $php_matches[1], "readme.html's Recommended PHP version is too old. Remember to update the WordPress.org Requirements page, too." ); 28 $this->assertContains( $matches[1], $php_matches[1], "readme.html's Recommended PHP version is too old. Remember to update the WordPress.org Requirements page, too." ); 26 29 } 27 30
Note: See TracChangeset
for help on using the changeset viewer.