Skip to content

Commit

Permalink
Update the timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
oslynn committed Jan 13, 2025
1 parent 730c699 commit 9a3fc79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion prime-router/src/main/kotlin/USTimeZone.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ enum class USTimeZone(val zoneId: String) {
MICHIGAN("US/Michigan"), // For Michigan timezone
CHAMORRO("Pacific/Guam"), // For Guam and Chamorro timezone
ALASKA("US/Alaska"), // For Alaska timezone
PUERTO_RICO("Cuba"), // For Puerto Rico timezone
PUERTO_RICO("America/Puerto_Rico"), // For Puerto Rico timezone
US_VIRGIN_ISLANDS("America/St_Thomas"), // For US Virgin Islands timezone
CHUUK("Pacific/Chuuk"), // For Chuuk, Micronesia timezone
POHNPEI("Pacific/Pohnpei"), // For Pohnpei, Micronesia timezone
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class CustomTranslationFunctionsTest {
@org.junit.jupiter.api.Test
fun `test ChuukTimezone for Micronesia timezone with convertDateTimeToHL7`() {
val timezoneParameters1: MutableList<MutableList<Base>> =
mutableListOf(mutableListOf(StringType("Pacific/Chuuk")))
mutableListOf(mutableListOf(StringType("Pacific/Port_Moresby")))
val adjustedDateTime =
CustomFHIRFunctions.changeTimezone(
mutableListOf(DateTimeType("2015-04-05T12:22:11Z")),
Expand All @@ -136,7 +136,7 @@ class CustomTranslationFunctionsTest {
@org.junit.jupiter.api.Test
fun `test PohnpeiTimezone for Micronesia timezone with convertDateTimeToHL7`() {
val timezoneParameters1: MutableList<MutableList<Base>> =
mutableListOf(mutableListOf(StringType("Pacific/Pohnpei")))
mutableListOf(mutableListOf(StringType("Pacific/Guadalcanal")))
val adjustedDateTime =
CustomFHIRFunctions.changeTimezone(
mutableListOf(DateTimeType("2015-04-05T12:22:11Z")),
Expand Down

0 comments on commit 9a3fc79

Please sign in to comment.