From 28c879ecc49e3e4abfe27bb5a4fa8d4dd6fd5951 Mon Sep 17 00:00:00 2001 From: Isabel Brison Date: Wed, 28 Jun 2023 03:56:48 +0000 Subject: [PATCH] Editor: update function name in test comment. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renames `gutenberg_apply_typography_support` to `wp_apply_typography_support` in typography test comment. Props kebbet, oglekler, ramonopoly. SeeĀ #58522. git-svn-id: https://develop.svn.wordpress.org/trunk@56084 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/block-supports/typography.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/block-supports/typography.php b/tests/phpunit/tests/block-supports/typography.php index 99e3649ec5..1b47ea379b 100644 --- a/tests/phpunit/tests/block-supports/typography.php +++ b/tests/phpunit/tests/block-supports/typography.php @@ -921,7 +921,7 @@ class Tests_Block_Supports_Typography extends WP_UnitTestCase { * @type string $minimum_font_size Minimum font size for any clamp() calculation. * @type int $scale_factor A scale factor to determine how fast a font scales within boundaries. * } - * @param string $expected_output Expected value of style property from gutenberg_apply_typography_support(). + * @param string $expected_output Expected value of style property from wp_apply_typography_support(). */ public function test_wp_get_computed_fluid_typography_value( $args, $expected_output ) { $actual = wp_get_computed_fluid_typography_value( $args );