Skip to content

Commit bf66ada

Browse files
committed
Renamed encoding test file
Jenkins is trying to read the .xml file for its own (and unknown) purpose, and it fails since Jenkins is using UTF-8. Renamed the file to end with .txt instead, which has no impact on the tests.
1 parent b6e8bd3 commit bf66ada

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/test/java/com/marklogic/spark/reader/file/ReadAggregateXmlFilesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
class ReadAggregateXmlFilesTest extends AbstractIntegrationTest {
1717

18-
private static final String ISO_8859_1_ENCODED_FILE = "src/test/resources/encoding/medline.iso-8859-1.xml";
18+
private static final String ISO_8859_1_ENCODED_FILE = "src/test/resources/encoding/medline.iso-8859-1.txt";
1919

2020
@Test
2121
void noNamespace() {

src/test/java/com/marklogic/spark/reader/file/ReadGenericFilesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*/
2727
class ReadGenericFilesTest extends AbstractIntegrationTest {
2828

29-
private static final String ISO_8859_1_ENCODED_FILE = "src/test/resources/encoding/medline.iso-8859-1.xml";
29+
private static final String ISO_8859_1_ENCODED_FILE = "src/test/resources/encoding/medline.iso-8859-1.txt";
3030

3131
@Test
3232
void readAndWriteMixedFiles() {

0 commit comments

Comments
 (0)