Make WordPress Core

Changeset 52387


Ignore:
Timestamp:
12/18/2021 09:16:37 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Tests: Fix typo in a test method name.

Follow-up to [52261].

See #53363.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/blocks/register.php

    r52261 r52387  
    99
    1010/**
    11  * Tests for register_block_type(), unregister_block_type(), get_dynamic_block_names() and register_block_style().
     11 * Tests for register_block_type(), unregister_block_type(), get_dynamic_block_names(), and register_block_style().
    1212 *
    1313 * @since 5.0.0
     
    574574     * @param array $block_styles Array of block styles to test.
    575575     */
    576     public function test_register_block_style_name_contain_spaces( array $block_styles ) {
     576    public function test_register_block_style_name_contains_spaces( array $block_styles ) {
    577577        register_block_style( 'core/query', $block_styles );
    578578    }
     
    583583     * @return array
    584584     */
    585     public function data_register_block_style_name_contain_spaces() {
     585    public function data_register_block_style_name_contains_spaces() {
    586586        return array(
    587587            'multiple spaces' => array(
Note: See TracChangeset for help on using the changeset viewer.