| Index: source/test/cintltst/udatpg_test.c
|
| diff --git a/source/test/cintltst/udatpg_test.c b/source/test/cintltst/udatpg_test.c
|
| index 1ca28623e053d46e7a864f518de6923c91f18cf5..930455c41dc244abeac371961659295b1cc90d0b 100644
|
| --- a/source/test/cintltst/udatpg_test.c
|
| +++ b/source/test/cintltst/udatpg_test.c
|
| @@ -1,7 +1,7 @@
|
| /*
|
| *******************************************************************************
|
| *
|
| -* Copyright (C) 2007-2013, International Business Machines
|
| +* Copyright (C) 2007-2014, International Business Machines
|
| * Corporation and others. All Rights Reserved.
|
| *
|
| *******************************************************************************
|
| @@ -119,8 +119,8 @@ typedef struct {
|
| static const AppendItemNameData appendItemNameData[] = { /* for Finnish */
|
| { UDATPG_YEAR_FIELD, {0x0076,0x0075,0x006F,0x0073,0x0069,0} }, /* "vuosi" */
|
| { UDATPG_MONTH_FIELD, {0x006B,0x0075,0x0075,0x006B,0x0061,0x0075,0x0073,0x0069,0} }, /* "kuukausi" */
|
| - { UDATPG_WEEKDAY_FIELD, {0x0076,0x0069,0x0069,0x006B,0x006F,0x006E,0x0070,0x00E4,0x0069,0x0076,0x00E4,0} }, /* "viikonpäivä" */
|
| - { UDATPG_DAY_FIELD, {0x0070,0x00E4,0x0069,0x0076,0x00E4,0} }, /* "päivä" */
|
| + { UDATPG_WEEKDAY_FIELD, {0x0076,0x0069,0x0069,0x006B,0x006F,0x006E,0x0070,0x00E4,0x0069,0x0076,0x00E4,0} },
|
| + { UDATPG_DAY_FIELD, {0x0070,0x00E4,0x0069,0x0076,0x00E4,0} },
|
| { UDATPG_HOUR_FIELD, {0x0074,0x0075,0x006E,0x0074,0x0069,0} }, /* "tunti" */
|
| { UDATPG_FIELD_COUNT, {0} } /* terminator */
|
| };
|
| @@ -383,7 +383,6 @@ enum { kTestOptionsPatLenMax = 32 };
|
| static const UChar skel_Hmm[] = { 0x0048, 0x006D, 0x006D, 0 };
|
| static const UChar skel_HHmm[] = { 0x0048, 0x0048, 0x006D, 0x006D, 0 };
|
| static const UChar skel_hhmm[] = { 0x0068, 0x0068, 0x006D, 0x006D, 0 };
|
| -static const UChar patn_Hcmm[] = { 0x0048, 0x003A, 0x006D, 0x006D, 0 }; /* H:mm */
|
| static const UChar patn_hcmm_a[] = { 0x0068, 0x003A, 0x006D, 0x006D, 0x0020, 0x0061, 0 }; /* h:mm a */
|
| static const UChar patn_HHcmm[] = { 0x0048, 0x0048, 0x003A, 0x006D, 0x006D, 0 }; /* HH:mm */
|
| static const UChar patn_hhcmm_a[] = { 0x0068, 0x0068, 0x003A, 0x006D, 0x006D, 0x0020, 0x0061, 0 }; /* hh:mm a */
|
|
|