Use correct timezone in tests
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 27 May 2016 22:11:11 +0000 (00:11 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 27 May 2016 22:11:11 +0000 (00:11 +0200)
src/test/kotlin/net/pterodactylus/rhynodge/webpages/weather/wettercom/WetterComStateTest.kt

index e6ab943..149b9a2 100644 (file)
@@ -16,7 +16,7 @@ class WetterComStateTest {
 
     @Test
     fun statesWithoutHoursEqualOneAnother() {
-        val now = Instant.now().atZone(ZoneId.of("UTC"))
+        val now = Instant.now().atZone(ZoneId.of("Europe/Berlin"))
         val firstState = WetterComState(ZonedDateTime.from(now))
         val secondState = WetterComState(ZonedDateTime.from(now))
         assertThat(firstState, `is`(secondState))
@@ -24,7 +24,7 @@ class WetterComStateTest {
 
     @Test
     fun statesWithTheSameHoursAreEqual() {
-        val now = Instant.now().atZone(ZoneId.of("UTC"))
+        val now = Instant.now().atZone(ZoneId.of("Europe/Berlin"))
         val firstState = WetterComState(ZonedDateTime.from(now))
         firstState.addHour(HourState(0, 10.0, 0.05, 0.0, WindDirection.NORTH, 5.0, "Fine", "http://1"))
         firstState.addHour(HourState(1, 12.0, 0.1, 2.0, WindDirection.WEST, 8.0, "Superb", "http://2"))
@@ -36,7 +36,7 @@ class WetterComStateTest {
 
     @Test
     fun iteratingDeliversHourStates() {
-        val now = Instant.now().atZone(ZoneId.of("UTC"))
+        val now = Instant.now().atZone(ZoneId.of("Europe/Berlin"))
         val firstState = WetterComState(ZonedDateTime.from(now))
         firstState.addHour(HourState(0, 10.0, 0.05, 0.0, WindDirection.NORTH, 5.0, "Fine", "http://1"))
         firstState.addHour(HourState(1, 12.0, 0.1, 2.0, WindDirection.WEST, 8.0, "Superb", "http://2"))