Skip to content

Commit

Permalink
PI-2035: Fix null start time
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcphee77 committed Mar 28, 2024
1 parent 216882e commit 0cdb3da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ object ContactGenerator {
val NEXT_APPT_CONTACT = generateContact(
OVERVIEW,
APPT_CT_3,
ZonedDateTime.of(LocalDateTime.now().plusHours(3), ZoneId.of("Europe/London")),
ZonedDateTime.of(LocalDateTime.now().plusHours(3), ZoneId.of("Europe/London"))
)

val CONTACT_DOCUMENT_1 = generateContactDocument(
Expand Down

0 comments on commit 0cdb3da

Please sign in to comment.