From 9e70bab18811ed58e6d78968c9cb7f8bde366b2a Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 12 Dec 2016 08:00:24 +0000 Subject: [PATCH] Remove the WordPress version number from `readme.html`. See #35554 git-svn-id: https://develop.svn.wordpress.org/trunk@39583 602fd350-edb4-49c9-b593-d223f7449a82 --- src/readme.html | 1 - tests/phpunit/tests/external-http/basic.php | 3 --- 2 files changed, 4 deletions(-) diff --git a/src/readme.html b/src/readme.html index ee9a3668d7..8f4906425c 100644 --- a/src/readme.html +++ b/src/readme.html @@ -9,7 +9,6 @@

WordPress -
Version 4.8

Semantic Personal Publishing Platform

diff --git a/tests/phpunit/tests/external-http/basic.php b/tests/phpunit/tests/external-http/basic.php index 70439caf4c..5b234a6579 100644 --- a/tests/phpunit/tests/external-http/basic.php +++ b/tests/phpunit/tests/external-http/basic.php @@ -6,9 +6,6 @@ class Tests_External_HTTP_Basic extends WP_UnitTestCase { function test_readme() { $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 );