5.7-alpha-50000 🎉🙌❤️

Thank you for the past
Excited for the future
We are #WordPressStrong!

git-svn-id: https://develop.svn.wordpress.org/trunk@50000 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-01-21 12:37:39 +00:00
parent f3d0d8a1c1
commit c145ff4a1a
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.7-alpha-49644-src';
$wp_version = '5.7-alpha-50000-src';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -342,14 +342,14 @@ class Tests_Formatting_BalanceTags extends WP_UnitTestCase {
'<p>Test',
'<p>Test test</em> test</p>',
'</p>Test',
'<p>Here is a <strong class="part">Test</p>',
'<p>We are <strong class="wp">#WordPressStrong</p>',
);
$expected = array(
'<b><i>Test</i></b>',
'<p>Test</p>',
'<p>Test test test</p>',
'Test',
'<p>Here is a <strong class="part">Test</strong></p>',
'<p>We are <strong class="wp">#WordPressStrong</strong></p>',
);
foreach ( $inputs as $key => $input ) {