Changeset 57735 for trunk/tests/phpunit/tests/functions/mceSetDirection.php
- Timestamp:
- 02/28/2024 09:44:40 AM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/mceSetDirection.php
r57733 r57735 8 8 * @covers ::_mce_set_direction 9 9 */ 10 class Tests_Functions_ mceSetDirection extends WP_UnitTestCase {10 class Tests_Functions_MceSetDirection extends WP_UnitTestCase { 11 11 12 12 /** … … 31 31 32 32 $actual = _mce_set_direction( $mce_init ); 33 $this->assertSameSets( $mce_init, $actual );33 $this->assertSameSets( $mce_init, $actual, 'An unexpected LTR result was returned.' ); 34 34 35 35 $orig_text_dir = $wp_locale->text_direction; … … 38 38 $wp_locale->text_direction = $orig_text_dir; 39 39 40 $this->assertSameSets( $expected, $actual );40 $this->assertSameSets( $expected, $actual, 'An unexpected RTL result was returned.' ); 41 41 } 42 42 }
Note: See TracChangeset
for help on using the changeset viewer.