Skip to content
Snippets Groups Projects
Commit a810d2fa authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-5413 xta: Use correct XtaRunner constructor

parent 36d99481
Branches
Tags
No related merge requests found
......@@ -22,7 +22,6 @@ import org.springframework.context.annotation.Bean;
import org.springframework.test.context.ActiveProfiles;
import de.ozgcloud.eingang.Application;
import de.ozgcloud.eingang.semantik.SemantikAdapter;
import de.ozgcloud.vorgang.grpc.binaryFile.BinaryFileServiceGrpc;
import de.ozgcloud.vorgang.grpc.binaryFile.GrpcUploadBinaryFileResponse;
import de.ozgcloud.vorgang.vorgang.GrpcCreateVorgangRequest;
......@@ -30,7 +29,6 @@ import de.ozgcloud.vorgang.vorgang.GrpcCreateVorgangResponse;
import de.ozgcloud.vorgang.vorgang.GrpcEingang;
import de.ozgcloud.vorgang.vorgang.GrpcFinishCreationResponse;
import de.ozgcloud.vorgang.vorgang.VorgangServiceGrpc;
import lombok.RequiredArgsConstructor;
@SpringBootTest(classes = {
Application.class,
......@@ -274,15 +272,10 @@ class XtaITCase {
@interface TestZipFileNames {
}
@RequiredArgsConstructor
static class ActivateXTARunnerConfig {
private final XtaService service;
private final SemantikAdapter semantikAdapter;
@Bean
XtaRunner xtaRunner() {
return new XtaRunner(service, semantikAdapter);
return new XtaRunner();
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment