From cd94945bafe24e5a15f94e8d05aa3556f741542b Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 31 Oct 2017 18:07:23 +0000 Subject: [PATCH] General: Remove the version number from the readme file in the 4.4 branch. See #42386 git-svn-id: https://develop.svn.wordpress.org/branches/4.4@42103 602fd350-edb4-49c9-b593-d223f7449a82 --- src/readme.html | 1 - tests/phpunit/tests/external-http/basic.php | 4 ---- 2 files changed, 5 deletions(-) diff --git a/src/readme.html b/src/readme.html index dc8e0d4c16..f3423badb1 100644 --- a/src/readme.html +++ b/src/readme.html @@ -9,7 +9,6 @@

WordPress -
Version 4.4.11

Semantic Personal Publishing Platform

diff --git a/tests/phpunit/tests/external-http/basic.php b/tests/phpunit/tests/external-http/basic.php index 9d15d292c3..080a74e743 100644 --- a/tests/phpunit/tests/external-http/basic.php +++ b/tests/phpunit/tests/external-http/basic.php @@ -9,10 +9,6 @@ class Tests_External_HTTP_Basic extends WP_UnitTestCase { $this->skipOnAutomatedBranches(); $readme = file_get_contents( ABSPATH . 'readme.html' ); - preg_match( '#
Version (.*)#', $readme, $matches ); - list( $version ) = explode( '-', $GLOBALS['wp_version'] ); - $this->assertEquals( $version, trim( $matches[1] ), "readme.html's version needs to be updated to $version." ); - preg_match( '#Recommendations.*PHP version ([0-9.]*)#s', $readme, $matches ); $response = wp_remote_get( 'https://secure.php.net/supported-versions.php' );