- Timestamp:
- 08/11/2022 12:37:05 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/l10n/loadTextdomainJustInTime.php
r53866 r53874 33 33 add_filter( 'template_root', array( $this, 'filter_theme_root' ) ); 34 34 wp_clean_themes_cache(); 35 unset( $GLOBALS['wp_themes'] ); 36 unset( $GLOBALS['l10n'] ); 37 unset( $GLOBALS['l10n_unloaded'] ); 38 _get_path_to_translation( null, true ); 35 unset( $GLOBALS['wp_themes'], $GLOBALS['l10n'], $GLOBALS['l10n_unloaded'] ); 36 37 /** @var WP_Textdomain_Registry $wp_textdomain_registry */ 38 global $wp_textdomain_registry; 39 40 $wp_textdomain_registry->reset(); 39 41 } 40 42 … … 42 44 $GLOBALS['wp_theme_directories'] = $this->orig_theme_dir; 43 45 wp_clean_themes_cache(); 44 unset( $GLOBALS['wp_themes'] ); 45 unset( $GLOBALS['l10n'] ); 46 unset( $GLOBALS['l10n_unloaded'] ); 47 _get_path_to_translation( null, true ); 46 unset( $GLOBALS['wp_themes'], $GLOBALS['l10n'], $GLOBALS['l10n_unloaded'] ); 47 48 /** @var WP_Textdomain_Registry $wp_textdomain_registry */ 49 global $wp_textdomain_registry; 50 51 $wp_textdomain_registry->reset(); 48 52 49 53 parent::tear_down(); … … 178 182 /** 179 183 * @ticket 37997 184 * @ticket 39210 180 185 * 181 186 * @covers ::switch_to_locale … … 193 198 194 199 $this->assertSame( 'Das ist ein Dummy Plugin', $actual_de_de ); 195 $this->assertSame( ' This is a dummy plugin', $actual_es_es );200 $this->assertSame( 'Este es un plugin dummy', $actual_es_es ); 196 201 } 197 202
Note: See TracChangeset
for help on using the changeset viewer.