From c4d712b498f5d55d96c0fca7e059f3f826032464 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 31 Oct 2017 17:43:17 +0000 Subject: [PATCH] General: Remove the version number from the readme file in the 4.3 branch. See #42386 git-svn-id: https://develop.svn.wordpress.org/branches/4.3@42093 602fd350-edb4-49c9-b593-d223f7449a82 --- src/readme.html | 1 - tests/phpunit/tests/basic.php | 7 ------- 2 files changed, 8 deletions(-) diff --git a/src/readme.html b/src/readme.html index 3f0cf95019..00c9c63cf4 100644 --- a/src/readme.html +++ b/src/readme.html @@ -9,7 +9,6 @@

WordPress -
Version 4.3.12

Semantic Personal Publishing Platform

diff --git a/tests/phpunit/tests/basic.php b/tests/phpunit/tests/basic.php index 724ff9cfe6..db0e78932c 100644 --- a/tests/phpunit/tests/basic.php +++ b/tests/phpunit/tests/basic.php @@ -21,13 +21,6 @@ class Tests_Basic extends WP_UnitTestCase { $this->assertTrue($this->val); } - 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." ); - } - function test_license() { // This test is designed to only run on trunk/master $this->skipOnAutomatedBranches();