Changeset 57305 for trunk/tests/phpunit/tests/l10n/determineLocale.php
- Timestamp:
- 01/17/2024 06:54:36 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/l10n/determineLocale.php
r57286 r57305 301 301 302 302 public function test_wp_local_package_global_not_installing() { 303 $ _REQUEST['language'] = 'de_DE';303 $GLOBALS['wp_local_package'] = 'de_DE'; 304 304 $this->assertSame( 'en_US', determine_locale() ); 305 305 } 306 306 public function test_wp_local_package_global_installing() { 307 $ _REQUEST['language'] = 'de_DE';307 $GLOBALS['wp_local_package'] = 'de_DE'; 308 308 wp_installing( true ); 309 309 $this->assertSame( 'de_DE', determine_locale() );
Note: See TracChangeset
for help on using the changeset viewer.