Make WordPress Core


Ignore:
Timestamp:
02/28/2024 09:44:40 AM (11 months ago)
Author:
swissspidy
Message:

Tests: Address capitalization and docblock inconsistencies in some test class names.

Follow-up to [57060], [57718], [57725], [57726], [57727], [57728], [57733].

Props swissspidy, costdev.
See #59647.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/functions/mceSetDirection.php

    r57733 r57735  
    88 * @covers ::_mce_set_direction
    99 */
    10 class Tests_Functions_mceSetDirection extends WP_UnitTestCase {
     10class Tests_Functions_MceSetDirection extends WP_UnitTestCase {
    1111
    1212    /**
     
    3131
    3232        $actual = _mce_set_direction( $mce_init );
    33         $this->assertSameSets( $mce_init, $actual );
     33        $this->assertSameSets( $mce_init, $actual, 'An unexpected LTR result was returned.' );
    3434
    3535        $orig_text_dir             = $wp_locale->text_direction;
     
    3838        $wp_locale->text_direction = $orig_text_dir;
    3939
    40         $this->assertSameSets( $expected, $actual );
     40        $this->assertSameSets( $expected, $actual, 'An unexpected RTL result was returned.' );
    4141    }
    4242}
Note: See TracChangeset for help on using the changeset viewer.