mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4912 Fix for Windows.
X-SVN-Rev: 18775
This commit is contained in:
parent
04d54d6211
commit
f422341fb9
1 changed files with 3 additions and 3 deletions
|
@ -952,9 +952,9 @@ void TimeZoneRegressionTest::Test4176686() {
|
|||
"DateFormat.format(dst)/dst zone", fmt2->format(dst, l), "GMT+02:15",
|
||||
};
|
||||
|
||||
for (int i=0; i<ARRAY_LENGTH(DATA); i+=3) {
|
||||
if (DATA[i+1]!=(DATA[i+2])) {
|
||||
errln("FAIL: " + DATA[i] + " -> " + DATA[i+1] + ", exp " + DATA[i+2]);
|
||||
for (int idx=0; idx<ARRAY_LENGTH(DATA); idx+=3) {
|
||||
if (DATA[idx+1]!=(DATA[idx+2])) {
|
||||
errln("FAIL: " + DATA[idx] + " -> " + DATA[idx+1] + ", exp " + DATA[idx+2]);
|
||||
}
|
||||
}
|
||||
delete z1;
|
||||
|
|
Loading…
Add table
Reference in a new issue