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 @BeforeEach
public void setUp() { public void setUp() {
Reference theElement = new Reference() Reference theElement = new Reference()
.setReference("Practitioner/123") .setReference("Practitioner/123")
.setDisplay("Test Practitioner"); .setDisplay("Test Practitioner");
Patient theOwningResource = new Patient() Patient theOwningResource = new Patient()
.addGeneralPractitioner(theElement); .addGeneralPractitioner(theElement);
resourceReferenceInfo = resourceReferenceInfo =
new ResourceReferenceInfo(fhirContext, theOwningResource, List.of("generalPractitioner"), theElement); new ResourceReferenceInfo(fhirContext, theOwningResource, List.of("generalPractitioner"), theElement);
} }
@Test @Test