We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37999a6 commit 26eb930Copy full SHA for 26eb930
src/test/org/firebirdsql/jdbc/BatchUpdatesTest.java
@@ -35,7 +35,6 @@
35
import java.time.LocalDateTime;
36
import java.time.LocalTime;
37
import java.util.Arrays;
38
-import java.util.List;
39
import java.util.Properties;
40
import java.util.stream.IntStream;
41
@@ -383,9 +382,9 @@ void testBatchMultipleEmptyStringsInBlob(boolean useServerBatch) throws Exceptio
383
382
384
try (ResultSet rs = stmt.executeQuery("select ID, CLOB_VALUE from BATCH_UPDATES order by ID")) {
385
assertNextRow(rs);
386
- assertRowEquals(rs, List.of(1, ""));
+ assertRowEquals(rs, Arrays.asList(1, ""));
387
388
- assertRowEquals(rs, List.of(2, ""));
+ assertRowEquals(rs, Arrays.asList(2, ""));
389
assertNoNextRow(rs);
390
}
391
0 commit comments