Commit 2dbf638b1e for wordpress.org

commit 2dbf638b1e9b690b17287a06cbb1bd333f5b80cb
Author: SergeyBiryukov <sergeybiryukov@git.wordpress.org>
Date:   Wed Sep 16 11:58:49 2026 +0000

    Tests: Correct the `WP_Font_Face` tests dataset.

    Due to being placed at the wrong level of the array, the `indexed array as input` test case was not actually used when running the tests.

    The fix can be confirmed with the `--testdox` parameter:
    {{{
    composer test -- --filter Tests_Fonts_WPFontFace_GenerateAndPrint --testdox
    ...
    _Fonts_WPFont Face_Generate And Print
    ✔ Should not generate and print when no fonts
    ✔ Should generate and print given fonts with data set "single truetype format font"
    ✔ Should generate and print given fonts with data set "multiple truetype format fonts"
    ✔ Should generate and print given fonts with data set "single woff2 format font"
    ✔ Should generate and print given fonts with data set "multiple woff2 format fonts"
    ✔ Should generate and print given fonts with data set "indexed array as input"
    }}}

    Follow-up to r57720.

    See #65819.
    Built from https://develop.svn.wordpress.org/trunk@63634


    git-svn-id: http://core.svn.wordpress.org/trunk@62809 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/version.php b/wp-includes/version.php
index f95c124969..57ee057685 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63633';
+$wp_version = '7.2-alpha-63634';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.