diff --git a/tests/phpunit/tests/db/charset.php b/tests/phpunit/tests/db/charset.php index 146ede65d1..1ccdf183ce 100644 --- a/tests/phpunit/tests/db/charset.php +++ b/tests/phpunit/tests/db/charset.php @@ -767,10 +767,10 @@ class Tests_DB_Charset extends WP_UnitTestCase { self::$_wpdb->query( $create ); $charset = self::$_wpdb->get_table_charset( $table ); - $this->assertSame( $charset, $expected_charset ); + $this->assertSame( $expected_charset, $charset ); $charset = self::$_wpdb->get_table_charset( strtoupper( $table ) ); - $this->assertSame( $charset, $expected_charset ); + $this->assertSame( $expected_charset, $charset ); self::$_wpdb->query( $drop ); } diff --git a/tests/phpunit/tests/image/editor.php b/tests/phpunit/tests/image/editor.php index a35f8af9f2..487dad0664 100644 --- a/tests/phpunit/tests/image/editor.php +++ b/tests/phpunit/tests/image/editor.php @@ -297,7 +297,7 @@ class Tests_Image_Editor extends WP_Image_UnitTestCase { } $file_data = wp_get_webp_info( $file ); - $this->assertSame( $file_data, $expected ); + $this->assertSame( $expected, $file_data ); } /** diff --git a/tests/phpunit/tests/image/functions.php b/tests/phpunit/tests/image/functions.php index 488731a0e8..26863a9004 100644 --- a/tests/phpunit/tests/image/functions.php +++ b/tests/phpunit/tests/image/functions.php @@ -626,7 +626,7 @@ class Tests_Image_Functions extends WP_UnitTestCase { $metadata = wp_generate_attachment_metadata( $attachment_id, $test_file ); $this->assertArrayHasKey( 'test-size', $metadata['sizes'], 'The `test-size` was not added to the metadata.' ); - $this->assertSame( $metadata['sizes']['test-size'], $expected ); + $this->assertSame( $expected, $metadata['sizes']['test-size'] ); remove_image_size( 'test-size' ); remove_filter( 'fallback_intermediate_image_sizes', array( $this, 'filter_fallback_intermediate_image_sizes' ), 10 ); diff --git a/tests/phpunit/tests/l10n/loadTextdomainJustInTime.php b/tests/phpunit/tests/l10n/loadTextdomainJustInTime.php index 0f0ecf5272..eafcb134d4 100644 --- a/tests/phpunit/tests/l10n/loadTextdomainJustInTime.php +++ b/tests/phpunit/tests/l10n/loadTextdomainJustInTime.php @@ -69,13 +69,13 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once DIR_TESTDATA . '/plugins/internationalized-plugin.php'; $is_textdomain_loaded_before = is_textdomain_loaded( 'internationalized-plugin' ); - $expected_output = i18n_plugin_test(); + $actual_output = i18n_plugin_test(); $is_textdomain_loaded_after = is_textdomain_loaded( 'internationalized-plugin' ); remove_filter( 'locale', array( $this, 'filter_set_locale_to_german' ) ); $this->assertFalse( $is_textdomain_loaded_before ); - $this->assertSame( 'Das ist ein Dummy Plugin', $expected_output ); + $this->assertSame( 'Das ist ein Dummy Plugin', $actual_output ); $this->assertTrue( $is_textdomain_loaded_after ); } @@ -90,13 +90,13 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once get_stylesheet_directory() . '/functions.php'; $is_textdomain_loaded_before = is_textdomain_loaded( 'internationalized-theme' ); - $expected_output = i18n_theme_test(); + $actual_output = i18n_theme_test(); $is_textdomain_loaded_after = is_textdomain_loaded( 'internationalized-theme' ); remove_filter( 'locale', array( $this, 'filter_set_locale_to_german' ) ); $this->assertFalse( $is_textdomain_loaded_before ); - $this->assertSame( 'Das ist ein Dummy Theme', $expected_output ); + $this->assertSame( 'Das ist ein Dummy Theme', $actual_output ); $this->assertTrue( $is_textdomain_loaded_after ); } @@ -121,34 +121,34 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once DIR_TESTDATA . '/plugins/internationalized-plugin.php'; - $expected_output_before = i18n_plugin_test(); + $actual_output_before = i18n_plugin_test(); $is_textdomain_loaded_before = is_textdomain_loaded( 'internationalized-plugin' ); unload_textdomain( 'internationalized-plugin' ); remove_filter( 'locale', array( $this, 'filter_set_locale_to_german' ) ); - $expected_output_after = i18n_plugin_test(); + $actual_output_after = i18n_plugin_test(); $is_textdomain_loaded_after = is_textdomain_loaded( 'internationalized-plugin' ); add_filter( 'locale', array( $this, 'filter_set_locale_to_german' ) ); load_textdomain( 'internationalized-plugin', WP_LANG_DIR . '/plugins/internationalized-plugin-de_DE.mo' ); - $expected_output_final = i18n_plugin_test(); + $actual_output_final = i18n_plugin_test(); $is_textdomain_loaded_final = is_textdomain_loaded( 'internationalized-plugin' ); unload_textdomain( 'internationalized-plugin' ); remove_filter( 'locale', array( $this, 'filter_set_locale_to_german' ) ); // Text domain loaded just in time. - $this->assertSame( 'Das ist ein Dummy Plugin', $expected_output_before ); + $this->assertSame( 'Das ist ein Dummy Plugin', $actual_output_before ); $this->assertTrue( $is_textdomain_loaded_before ); // Text domain unloaded. - $this->assertSame( 'This is a dummy plugin', $expected_output_after ); + $this->assertSame( 'This is a dummy plugin', $actual_output_after ); $this->assertFalse( $is_textdomain_loaded_after ); // Text domain loaded manually again. - $this->assertSame( 'Das ist ein Dummy Plugin', $expected_output_final ); + $this->assertSame( 'Das ist ein Dummy Plugin', $actual_output_final ); $this->assertTrue( $is_textdomain_loaded_final ); } @@ -159,10 +159,10 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once DIR_TESTDATA . '/plugins/internationalized-plugin.php'; switch_to_locale( 'de_DE' ); - $expected = i18n_plugin_test(); + $actual = i18n_plugin_test(); restore_previous_locale(); - $this->assertSame( 'Das ist ein Dummy Plugin', $expected ); + $this->assertSame( 'Das ist ein Dummy Plugin', $actual ); } /** @@ -172,15 +172,15 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once DIR_TESTDATA . '/plugins/internationalized-plugin.php'; switch_to_locale( 'de_DE' ); - $expected_de_de = i18n_plugin_test(); + $actual_de_de = i18n_plugin_test(); switch_to_locale( 'es_ES' ); - $expected_es_es = i18n_plugin_test(); + $actual_es_es = i18n_plugin_test(); restore_current_locale(); - $this->assertSame( 'Das ist ein Dummy Plugin', $expected_de_de ); - $this->assertSame( 'This is a dummy plugin', $expected_es_es ); + $this->assertSame( 'Das ist ein Dummy Plugin', $actual_de_de ); + $this->assertSame( 'This is a dummy plugin', $actual_es_es ); } /** @@ -192,12 +192,12 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once get_stylesheet_directory() . '/functions.php'; switch_to_locale( 'de_DE' ); - $expected = i18n_theme_test(); + $actual = i18n_theme_test(); restore_previous_locale(); switch_theme( WP_DEFAULT_THEME ); - $this->assertSame( 'Das ist ein Dummy Theme', $expected ); + $this->assertSame( 'Das ist ein Dummy Theme', $actual ); } /** @@ -209,9 +209,9 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { set_current_screen( 'dashboard' ); wp_set_current_user( self::$user_id ); - $expected = i18n_plugin_test(); + $actual = i18n_plugin_test(); - $this->assertSame( 'Das ist ein Dummy Plugin', $expected ); + $this->assertSame( 'Das ist ein Dummy Plugin', $actual ); } /** @@ -224,11 +224,11 @@ class Tests_L10n_LoadTextdomainJustInTime extends WP_UnitTestCase { require_once get_stylesheet_directory() . '/functions.php'; - $expected = i18n_theme_test(); + $actual = i18n_theme_test(); switch_theme( WP_DEFAULT_THEME ); - $this->assertSame( 'Das ist ein Dummy Theme', $expected ); + $this->assertSame( 'Das ist ein Dummy Theme', $actual ); } /** diff --git a/tests/phpunit/tests/l10n/wpLocaleSwitcher.php b/tests/phpunit/tests/l10n/wpLocaleSwitcher.php index 3b3661790f..7f769d4ea6 100644 --- a/tests/phpunit/tests/l10n/wpLocaleSwitcher.php +++ b/tests/phpunit/tests/l10n/wpLocaleSwitcher.php @@ -372,14 +372,14 @@ class Tests_L10n_wpLocaleSwitcher extends WP_UnitTestCase { switch_to_locale( 'de_DE' ); switch_to_locale( $site_locale ); - $expected = i18n_plugin_test(); + $actual = i18n_plugin_test(); restore_current_locale(); $wp_locale_switcher = $locale_switcher; $this->assertSame( 'en_US', get_locale() ); - $this->assertSame( 'This is a dummy plugin', $expected ); + $this->assertSame( 'This is a dummy plugin', $actual ); } public function filter_locale() { diff --git a/tests/phpunit/tests/menu/walker-nav-menu.php b/tests/phpunit/tests/menu/walker-nav-menu.php index 1811284b50..b004819134 100644 --- a/tests/phpunit/tests/menu/walker-nav-menu.php +++ b/tests/phpunit/tests/menu/walker-nav-menu.php @@ -41,7 +41,7 @@ class Tests_Menu_Walker_Nav_Menu extends WP_UnitTestCase { * @ticket 43290 */ public function test_noopener_no_referrer_for_target_blank() { - $expected = ''; + $actual = ''; $post_id = $this->factory->post->create(); $post_title = get_the_title( $post_id ); @@ -61,9 +61,9 @@ class Tests_Menu_Walker_Nav_Menu extends WP_UnitTestCase { 'link_after' => '', ); - $this->walker->start_el( $expected, (object) $item, 0, (object) $args ); + $this->walker->start_el( $actual, (object) $item, 0, (object) $args ); - $this->assertSame( "