Fix CI deploy (#5596)
This commit is contained in:
parent
878e27b06d
commit
5a747051de
|
@ -48,10 +48,10 @@ public class MdmLinkExpandSvc implements IMdmLinkExpandSvc {
|
|||
private static final Logger ourLog = Logs.getMdmTroubleshootingLog();
|
||||
|
||||
@Autowired
|
||||
private IMdmLinkDao myMdmLinkDao;
|
||||
IMdmLinkDao myMdmLinkDao;
|
||||
|
||||
@Autowired
|
||||
private IIdHelperService myIdHelperService;
|
||||
IIdHelperService myIdHelperService;
|
||||
|
||||
public MdmLinkExpandSvc() {}
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ import ca.uhn.fhir.mdm.dao.IMdmLinkDao;
|
|||
import ca.uhn.fhir.mdm.model.MdmPidTuple;
|
||||
import ca.uhn.fhir.rest.api.server.storage.IResourcePersistentId;
|
||||
import jakarta.annotation.Nonnull;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.junit.jupiter.params.ParameterizedTest;
|
||||
import org.junit.jupiter.params.provider.Arguments;
|
||||
|
@ -57,6 +58,13 @@ class MdmLinkExpandSvcTest {
|
|||
@InjectMocks
|
||||
private MdmLinkExpandSvc mySubject;
|
||||
|
||||
@BeforeEach
|
||||
public void beforeEach() {
|
||||
mySubject.myMdmLinkDao = myIMdmLinkDao;
|
||||
mySubject.myIdHelperService = myIdHelperService;
|
||||
}
|
||||
|
||||
|
||||
void beforeEachExpand() {
|
||||
final Answer<Set<String>> answer = invocation -> {
|
||||
final Set<IResourcePersistentId<?>> param = invocation.getArgument(0);
|
||||
|
|
|
@ -47,6 +47,8 @@ steps:
|
|||
|
||||
# 3. Import keys into gpg
|
||||
- bash: |
|
||||
apt update
|
||||
apt install -y gpg
|
||||
gpg --import --no-tty --batch --yes $(Agent.TempDirectory)/public.key
|
||||
gpg --import --no-tty --batch --yes $(Agent.TempDirectory)/private.key
|
||||
gpg --list-keys --keyid-format LONG
|
||||
|
|
Loading…
Reference in New Issue