Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import uk.nhs.adaptors.pss.translator.service.ConfidentialityService;

@ExtendWith(MockitoExtension.class)
public class SpecimenMapperTest {
class SpecimenMapperTest {

private static final String XML_RESOURCES_BASE = "xml/Specimen/";
private static final String SPECIMEN_PREFIX = "Specimen/";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import static org.hl7.fhir.dstu3.model.OperationOutcome.IssueSeverity.ERROR;
import static org.hl7.fhir.dstu3.model.OperationOutcome.IssueType.NOTSUPPORTED;
import static org.junit.jupiter.api.Assertions.assertEquals;

import org.hl7.fhir.dstu3.model.CodeableConcept;
import org.hl7.fhir.dstu3.model.OperationOutcome;
import org.junit.jupiter.api.Test;

import uk.nhs.adaptors.common.util.CodeableConceptUtils;
Expand Down
2 changes: 1 addition & 1 deletion smoke-tests/src/test/java/Gp2GpAdaptorSmokeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static void setup() {
}

@Test
public void expect_Gp2gpAdaptorIsAvailable() {
void expect_Gp2gpAdaptorIsAvailable() {

Optional<String> responseBody = Optional.empty();

Expand Down
Loading