Skip to content

Commit c9f8725

Browse files
authored
Merge pull request #5817 from line-o/test/reinstate-integration-tests
Reinstate integration tests in maven
2 parents a703542 + 80e33ac commit c9f8725

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

exist-core/src/main/java/org/exist/test/runner/XMLTestRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ private static XMLTestInfo extractTestInfo(final Path path, final Document doc)
142142

143143
private static @Nullable String getIdValue(final Node test) {
144144
final String id = ((Element)test).getAttribute("id");
145-
return id.isEmpty() ? null : id;
145+
return id.isBlank() ? null : id;
146146
}
147147

148148
private static @Nullable String getTaskText(final Node test) {

exist-parent/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,8 @@
807807
<plugin>
808808
<groupId>org.apache.maven.plugins</groupId>
809809
<artifactId>maven-surefire-plugin</artifactId>
810-
<version>3.5.3</version>
810+
<!-- NOTE: version 3.5.3 fails to run XSuite tests -->
811+
<version>3.5.2</version>
811812
<dependencies>
812813
<dependency>
813814
<groupId>org.junit.platform</groupId>

0 commit comments

Comments
 (0)