ICU-20879 fix typo in tests, calender → calendar

This commit is contained in:
Peter Edberg 2020-03-10 11:05:55 -07:00 committed by pedberg-icu
parent d490170520
commit d6eabe4155
3 changed files with 3 additions and 3 deletions

View file

@ -2913,7 +2913,7 @@ void CalendarRegressionTest::TestT8596(void) {
gc->setFirstDayOfWeek(UCAL_MONDAY);
gc->setMinimalDaysInFirstWeek(4);
// Force the calender to resolve the fields once.
// Force the calendar to resolve the fields once.
// The maximum week number in 2011 is 52.
gc->set(UCAL_YEAR, 2011);
gc->get(UCAL_YEAR, status);

View file

@ -2327,7 +2327,7 @@ void CalendarTest::TestTimeStamp() {
Calendar *cal;
// Create a new Gregorian Calendar.
cal = Calendar::createInstance("en_US@calender=gregorian", status);
cal = Calendar::createInstance("en_US@calendar=gregorian", status);
if (U_FAILURE(status)) {
dataerrln("Error creating Gregorian calendar.");
return;

View file

@ -2287,7 +2287,7 @@ public class CalendarRegressionTest extends com.ibm.icu.dev.test.TestFmwk {
gc.setFirstDayOfWeek(Calendar.MONDAY);
gc.setMinimalDaysInFirstWeek(4);
// Force the calender to resolve the fields once.
// Force the calendar to resolve the fields once.
// The maximum week number in 2011 is 52.
gc.set(Calendar.YEAR, 2011);
gc.get(Calendar.YEAR);