This commit is contained in:
Sara Arjona 2020-05-18 20:33:05 +02:00
commit 2418c12c60
2 changed files with 3 additions and 1 deletions

View File

@ -182,6 +182,7 @@ $string['america/noronha'] = 'America/Noronha';
$string['america/north_dakota/beulah'] = 'America/North_Dakota/Beulah';
$string['america/north_dakota/center'] = 'America/North_Dakota/Center';
$string['america/north_dakota/new_salem'] = 'America/North_Dakota/New_Salem';
$string['america/nuuk'] = 'America/Nuuk';
$string['america/ojinaga'] = 'America/Ojinaga';
$string['america/panama'] = 'America/Panama';
$string['america/pangnirtung'] = 'America/Pangnirtung';

View File

@ -170,7 +170,8 @@ class core_date_testcase extends advanced_testcase {
$phpzones = DateTimeZone::listIdentifiers();
$manager = get_string_manager();
foreach ($phpzones as $tz) {
$this->assertTrue($manager->string_exists(strtolower($tz), 'core_timezones'));
$this->assertTrue($manager->string_exists(strtolower($tz), 'core_timezones'),
'String for timezone ' . strtolower($tz) . ' not found.');
}
}