Reverted active flag check on golden resource

This commit is contained in:
Nick 2021-01-14 11:10:34 -05:00
parent e6f484cefd
commit 07be675484
1 changed files with 1 additions and 3 deletions

View File

@ -139,9 +139,7 @@ abstract public class BaseMdmR4Test extends BaseJpaR4Test {
@Nonnull
protected Patient createGoldenPatient() {
Patient patient = new Patient();
patient.setActive(true);
return createPatient(patient, true, false);
return createPatient(new Patient(), true, false);
}
@Nonnull