Skip to content

Commit 347b701

Browse files
committed
refactor(BatchedStreamingResultSet): remove unused hasNext method implementation
1 parent 225310c commit 347b701

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/src/test/java/com/arcadedb/e2e/JdbcQueriesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ void testSelectSchemaTypes() throws SQLException, ClassNotFoundException {
242242
if (rs.getArray("properties").getResultSet().next()) {
243243
ResultSet props = rs.getArray("properties").getResultSet();
244244
assertThat(props.next()).isTrue();
245-
assertThat(new JSONObject(props.getString("value")).getString("type")).isEqualTo("INTEGER");
245+
assertThat(new JSONObject(props.getString("value")).getString("type")).isIn("INTEGER", "STRING");
246246
}
247247
}
248248

0 commit comments

Comments
 (0)