File tree 1 file changed +0
-10
lines changed
src/test/kotlin/uk/gov/justice/digital/hmpps/hmppsintegrationapi/controllers/v1/person
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,7 @@ import org.springframework.test.web.servlet.MockMvc
17
17
import org.springframework.web.reactive.function.client.WebClientResponseException
18
18
import uk.gov.justice.digital.hmpps.hmppsintegrationapi.helpers.IntegrationAPIMockMvc
19
19
import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.Adjudication
20
- import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.Identifiers
21
20
import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.IncidentDetailsDto
22
- import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.Person
23
21
import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.Response
24
22
import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.UpstreamApi
25
23
import uk.gov.justice.digital.hmpps.hmppsintegrationapi.models.hmpps.UpstreamApiError
@@ -40,7 +38,6 @@ internal class AdjudicationsControllerTest(
40
38
val path = " /v1/persons/$hmppsId /reported-adjudications"
41
39
val mockMvc = IntegrationAPIMockMvc (springMockMvc)
42
40
val filters = null
43
- val person = Person (firstName = "Qui -gon", lastName = "Jin ", identifiers = Identifiers (nomisNumber = hmppsId))
44
41
45
42
describe("GET $path") {
46
43
beforeTest {
@@ -60,13 +57,6 @@ internal class AdjudicationsControllerTest(
60
57
),
61
58
),
62
59
)
63
-
64
- whenever(getPersonService.getPersonWithPrisonFilter(hmppsId = hmppsId, filters = filters)).thenReturn(
65
- Response (
66
- data = person,
67
- errors = emptyList(),
68
- ),
69
- )
70
60
}
71
61
72
62
it("throws exception when no person found") {
You can’t perform that action at this time.
0 commit comments