Skip to content

Commit e0ceb34

Browse files
committed
Spotless changes
1 parent 4e91c9d commit e0ceb34

File tree

1 file changed

+3
-4
lines changed
  • x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/trigger/schedule/support

1 file changed

+3
-4
lines changed

x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/trigger/schedule/support/TimezoneUtilsTests.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@
1717
public class TimezoneUtilsTests extends ESTestCase {
1818

1919
public void testExpectedFormatParsing() {
20-
assertThat(TimezoneUtils.parse("Europe/London").getId(),equalTo("Europe/London"));
21-
assertThat(TimezoneUtils.parse("+1").getId(),equalTo("+01:00"));
22-
assertThat(TimezoneUtils.parse("GMT+01:00").getId(),equalTo("GMT+01:00"));
20+
assertThat(TimezoneUtils.parse("Europe/London").getId(), equalTo("Europe/London"));
21+
assertThat(TimezoneUtils.parse("+1").getId(), equalTo("+01:00"));
22+
assertThat(TimezoneUtils.parse("GMT+01:00").getId(), equalTo("GMT+01:00"));
2323
}
2424

25-
2625
public void testParsingIsCaseInsensitive() {
2726
ZoneId timeZone = randomTimeZone().toZoneId();
2827
assertThat(TimezoneUtils.parse(timeZone.getId()), equalTo(timeZone));

0 commit comments

Comments
 (0)