Skip to content

Commit

Permalink
MAT-7013: Modify reference, adhere to style guid:
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Apr 25, 2024
1 parent 5104de6 commit 9aafdd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ public void updateCodeSystems() {

UmlsUser user = new UmlsUser();
user.setApiKey(apiKey);
ResponseEntity<List<CodeSystem>> response =
ResponseEntity.ok().body(fhirTerminologyService.retrieveAllCodeSystems(user));
List<CodeSystem> response = fhirTerminologyService.retrieveAllCodeSystems(user);
log.info("Successfully retrieved and updated code systems for user: {}", response);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import java.util.*;

import static org.mockito.Mockito.*;

@ExtendWith(MockitoExtension.class)
public class UpdateCodeSystemTaskTest {
@Mock private FhirTerminologyService fhirTerminologyService;
Expand Down

0 comments on commit 9aafdd5

Please sign in to comment.