From 816484d9adfceaa1fb0806c6b96a67349da99ccd Mon Sep 17 00:00:00 2001 From: "James Burke (IDAM)" Date: Fri, 13 Oct 2023 16:02:10 +0100 Subject: [PATCH] add location desc --- .../service/TestingCaseWorkerProfileService.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/uk/gov/hmcts/cft/idam/testingsupportapi/service/TestingCaseWorkerProfileService.java b/src/main/java/uk/gov/hmcts/cft/idam/testingsupportapi/service/TestingCaseWorkerProfileService.java index 7a0378553..87469f005 100644 --- a/src/main/java/uk/gov/hmcts/cft/idam/testingsupportapi/service/TestingCaseWorkerProfileService.java +++ b/src/main/java/uk/gov/hmcts/cft/idam/testingsupportapi/service/TestingCaseWorkerProfileService.java @@ -58,6 +58,7 @@ private CreateCaseWorkerProfileRequest convertToCreateRequest(User user) { CaseWorkerLocation location = new CaseWorkerLocation(); location.setLocationId("206150"); + location.setLocationDescription("Ayr Social Security and Child Support Tribunal"); location.setPrimary(true); createRequest.setBaseLocations(List.of(location));