From 5dda4f8470bc714eec48f8c49f8f4dc633545f38 Mon Sep 17 00:00:00 2001 From: Amardeep Chimber Date: Mon, 4 Nov 2024 13:00:44 +0000 Subject: [PATCH] MAN-109 - removed unused import --- .../digital/hmpps/CreateAppointmentIntegrationTests.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/projects/manage-supervision-and-delius/src/integrationTest/kotlin/uk/gov/justice/digital/hmpps/CreateAppointmentIntegrationTests.kt b/projects/manage-supervision-and-delius/src/integrationTest/kotlin/uk/gov/justice/digital/hmpps/CreateAppointmentIntegrationTests.kt index 4650ba8680..add5abc308 100644 --- a/projects/manage-supervision-and-delius/src/integrationTest/kotlin/uk/gov/justice/digital/hmpps/CreateAppointmentIntegrationTests.kt +++ b/projects/manage-supervision-and-delius/src/integrationTest/kotlin/uk/gov/justice/digital/hmpps/CreateAppointmentIntegrationTests.kt @@ -12,6 +12,7 @@ import org.springframework.boot.test.context.SpringBootTest import org.springframework.test.web.servlet.MockMvc import org.springframework.test.web.servlet.request.MockMvcRequestBuilders import org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post +import org.springframework.test.web.servlet.result.MockMvcResultHandlers.print import org.springframework.test.web.servlet.result.MockMvcResultMatchers import uk.gov.justice.digital.hmpps.api.model.appointment.AppointmentDetail import uk.gov.justice.digital.hmpps.api.model.appointment.CreateAppointment @@ -21,11 +22,9 @@ import uk.gov.justice.digital.hmpps.test.CustomMatchers.isCloseTo import uk.gov.justice.digital.hmpps.test.MockMvcExtensions.contentAsJson import uk.gov.justice.digital.hmpps.test.MockMvcExtensions.withJson import uk.gov.justice.digital.hmpps.test.MockMvcExtensions.withToken +import java.time.LocalDate import java.time.ZonedDateTime import java.util.* -import org.springframework.test.web.servlet.result.MockMvcResultHandlers.print -import uk.gov.justice.digital.hmpps.datetime.EuropeLondon -import java.time.LocalDate @AutoConfigureMockMvc @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)