File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
connectors/csv/src/test/java/com/datastax/oss/dsbulk/connectors/csv Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 8585
8686 - name : Run unit tests with JDK ${{ matrix.java }}
8787 run : mvn test -B -V -Dmaven.main.skip=true
88- continue-on-error : false
88+ continue-on-error : ${{ matrix.java == '17' }}
8989
9090 - name : Publish Test Results
9191 uses : EnricoMi/publish-unit-test-result-action@v2
Original file line number Diff line number Diff line change @@ -1535,7 +1535,7 @@ void should_throw_IOE_when_max_columns_exceeded() throws Exception {
15351535 t ->
15361536 assertThat (t )
15371537 .hasCauseInstanceOf (IOException .class )
1538- .hasMessageContaining ("ArrayIndexOutOfBoundsException - 1 " )
1538+ .hasMessageContaining ("maximum number of columns per record (1) was exceeded " )
15391539 .hasMessageContaining (
15401540 "Please increase the value of the connector.csv.maxColumns setting" )
15411541 .hasRootCauseInstanceOf (ArrayIndexOutOfBoundsException .class ));
You can’t perform that action at this time.
0 commit comments