Skip to content

Commit 55b063f

Browse files
committed
MET-6576 Additional small code refactor.
1 parent 0d2c21d commit 55b063f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

client/src/test/java/eu/europeana/processing/HttpFlinkPerformanceIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
import java.util.Map;
77
import org.junit.jupiter.api.Test;
88

9-
public class HttpFlinkPerformanceIT extends FlinkPerformanceIT {
9+
public class HttpFlinkPerformanceIT extends OaiFlinkPerformanceIT {
1010

1111
@Override
1212
@Test
13-
void step1_shouldExecuteWAIHarvestCompletelyWithoutErrors() throws Exception {
13+
void step1_shouldExecuteHarvestCompletelyWithoutErrors() throws Exception {
1414
executeStep(1, jarIdsProperties.getHttp(), "eu.europeana.processing.http.HttpHarvestingJob",
1515
Map.of(HTTP_ARCHIVE_URL, sourceProperties.getUrl())); }
1616
}

client/src/test/java/eu/europeana/processing/FlinkPerformanceIT.java renamed to client/src/test/java/eu/europeana/processing/OaiFlinkPerformanceIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import static eu.europeana.processing.job.JobParamName.*;
2121

2222

23-
public class FlinkPerformanceIT extends AbstractPerformanceIT {
23+
class OaiFlinkPerformanceIT extends AbstractPerformanceIT {
2424

2525
private static final Logger LOGGER = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
2626

@@ -34,7 +34,7 @@ public class FlinkPerformanceIT extends AbstractPerformanceIT {
3434
protected JarIdsProperties jarIdsProperties;
3535

3636
@Test
37-
void step1_shouldExecuteWAIHarvestCompletelyWithoutErrors() throws Exception {
37+
void step1_shouldExecuteHarvestCompletelyWithoutErrors() throws Exception {
3838

3939
executeStep(1, jarIdsProperties.getOai(), "eu.europeana.processing.oai.OAIJob",
4040
Map.of(OAI_REPOSITORY_URL, sourceProperties.getUrl(), SET_SPEC, sourceProperties.getSetSpec(), METADATA_PREFIX,

normalization/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>org.junit.jupiter</groupId>
3939
<artifactId>junit-jupiter-api</artifactId>
40-
<version>5.12.2</version>
40+
<version>${jupiter.version}</version>
4141
<scope>test</scope>
4242
</dependency>
4343

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<jackson.version>2.16.1</jackson.version>
2222
<postgres.version>42.7.3</postgres.version>
2323
<netty.version>4.1.107.Final</netty.version>
24-
<jupiter.version>5.10.5</jupiter.version>
24+
<jupiter.version>5.12.2</jupiter.version>
2525
</properties>
2626

2727
<modules>

0 commit comments

Comments
 (0)