Skip to content

Commit 26eb930

Browse files
committed
Fix Java 8 compatibility
1 parent 37999a6 commit 26eb930

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/org/firebirdsql/jdbc/BatchUpdatesTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
import java.time.LocalDateTime;
3636
import java.time.LocalTime;
3737
import java.util.Arrays;
38-
import java.util.List;
3938
import java.util.Properties;
4039
import java.util.stream.IntStream;
4140

@@ -383,9 +382,9 @@ void testBatchMultipleEmptyStringsInBlob(boolean useServerBatch) throws Exceptio
383382

384383
try (ResultSet rs = stmt.executeQuery("select ID, CLOB_VALUE from BATCH_UPDATES order by ID")) {
385384
assertNextRow(rs);
386-
assertRowEquals(rs, List.of(1, ""));
385+
assertRowEquals(rs, Arrays.asList(1, ""));
387386
assertNextRow(rs);
388-
assertRowEquals(rs, List.of(2, ""));
387+
assertRowEquals(rs, Arrays.asList(2, ""));
389388
assertNoNextRow(rs);
390389
}
391390
}

0 commit comments

Comments
 (0)