diff options
author | Neil Fuller <nfuller@google.com> | 2015-02-02 13:39:07 +0000 |
---|---|---|
committer | Neil Fuller <nfuller@google.com> | 2015-02-18 10:23:20 +0000 |
commit | a88856485e84ad5cd45a6e16310490d871a679c4 (patch) | |
tree | a7df830021868d03423d74a3c1bd8b4ca8580bd4 /luni | |
parent | db4499e1983c9649c8de7697d10825028fd8094d (diff) | |
download | libcore-a88856485e84ad5cd45a6e16310490d871a679c4.zip libcore-a88856485e84ad5cd45a6e16310490d871a679c4.tar.gz libcore-a88856485e84ad5cd45a6e16310490d871a679c4.tar.bz2 |
Fixes associated with the tzdata 2015a update
Chile has changed the rules for DST. The test duplicates
testApia below it, so it can be removed.
Bug: 19212588
(cherry-picked from commit ebfb8f8b0ee0c0a75d92d8fc56ccd0d87ee7e9ad)
Change-Id: Ibe7c0dc510813826dca13993b6600d368e03740a
Diffstat (limited to 'luni')
-rw-r--r-- | luni/src/test/java/libcore/java/util/TimeZoneTest.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/luni/src/test/java/libcore/java/util/TimeZoneTest.java b/luni/src/test/java/libcore/java/util/TimeZoneTest.java index 4cda676..4f2e38c 100644 --- a/luni/src/test/java/libcore/java/util/TimeZoneTest.java +++ b/luni/src/test/java/libcore/java/util/TimeZoneTest.java @@ -261,14 +261,6 @@ public class TimeZoneTest extends TestCase { assertEquals("", failures.toString()); } - public void testSantiago() throws Exception { - TimeZone tz = TimeZone.getTimeZone("America/Santiago"); - assertEquals("Chile Summer Time", tz.getDisplayName(true, TimeZone.LONG, Locale.US)); - assertEquals("Chile Standard Time", tz.getDisplayName(false, TimeZone.LONG, Locale.US)); - assertEquals("GMT-03:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.US)); - assertEquals("GMT-04:00", tz.getDisplayName(false, TimeZone.SHORT, Locale.US)); - } - // http://b/7955614 public void testApia() throws Exception { TimeZone tz = TimeZone.getTimeZone("Pacific/Apia"); |