ICU-10462 Changed the default time zone used by the ICU unit test framework from PST to America/Los_Angeles.

X-SVN-Rev: 34547
This commit is contained in:
Yoshito Umaoka 2013-10-10 21:23:53 +00:00
parent c1fbbc062e
commit 1746d496d4
2 changed files with 2 additions and 2 deletions

View File

@ -2548,7 +2548,7 @@ public class DateFormatTest extends com.ibm.icu.dev.test.TestFmwk {
}
// force success on fallback
text = "08/15/58 " + TimeZone.getDefault().getID();
text = "08/15/58 " + TimeZone.getDefault().getDisplayName(true, TimeZone.SHORT);
try {
fmt.parse(text);
logln("found default tz");

View File

@ -47,7 +47,7 @@ public class TestFmwk extends AbstractTestLog {
/**
* The default time zone for all of our tests. Used in Target.run();
*/
private final static TimeZone defaultTimeZone = TimeZone.getTimeZone("PST");
private final static TimeZone defaultTimeZone = TimeZone.getTimeZone("America/Los_Angeles");
/**
* The default locale used for all of our tests. Used in Target.run();