indentation fixed

This commit is contained in:
Melih Aydogdu 2024-05-27 13:36:33 +02:00
parent f51e2ea886
commit 3e0e651e9d
1 changed files with 7 additions and 7 deletions

View File

@ -20,15 +20,15 @@ public class ResourceReferenceInfoTest {
@BeforeEach
public void setUp() {
Reference theElement = new Reference()
.setReference("Practitioner/123")
.setDisplay("Test Practitioner");
Reference theElement = new Reference()
.setReference("Practitioner/123")
.setDisplay("Test Practitioner");
Patient theOwningResource = new Patient()
.addGeneralPractitioner(theElement);
Patient theOwningResource = new Patient()
.addGeneralPractitioner(theElement);
resourceReferenceInfo =
new ResourceReferenceInfo(fhirContext, theOwningResource, List.of("generalPractitioner"), theElement);
resourceReferenceInfo =
new ResourceReferenceInfo(fhirContext, theOwningResource, List.of("generalPractitioner"), theElement);
}
@Test