Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
leif stawnyczy committed Feb 12, 2025
1 parent 29dc117 commit 5a03f7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ public RequestPartitionId hook(RequestDetails theRequestDetails) {

@Hook(Pointcut.SUBSCRIPTION_RESOURCE_DID_NOT_MATCH_ANY_SUBSCRIPTIONS)
public void didNotFind(ResourceModifiedMessage theMsg) {
ourLog.info(theMsg.toString());
// in case we want to know why we can log
// but this is fired for all subscriptions on startup too
ourLog.debug(theMsg.toString());
}
}

Expand All @@ -103,7 +105,7 @@ public void createResource_withNonDefaultIdPartition_shouldCreate() throws Inter
// test
myMdmHelper.createWithLatch(patient, true);

// verify
// verify (1 created)
assertEquals(initialCount + 1, myMdmLinkDao.count());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import ca.uhn.fhir.jpa.entity.PartitionEntity;
import ca.uhn.fhir.jpa.interceptor.CascadingDeleteInterceptor;
import ca.uhn.fhir.jpa.mdm.BaseMdmR4Test;
import ca.uhn.fhir.jpa.mdm.config.MdmLoader;
import ca.uhn.fhir.jpa.mdm.helper.MdmHelperConfig;
import ca.uhn.fhir.jpa.mdm.helper.MdmHelperR4;
import ca.uhn.fhir.jpa.mdm.helper.MdmLinkHelper;
Expand Down

0 comments on commit 5a03f7b

Please sign in to comment.