Skip to content

Commit

Permalink
remove the test assertions related to the default db configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
reugn committed Oct 30, 2024
1 parent c4a0e7e commit a1fb95f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/test/java/com/aerospike/jdbc/RecordMetadataTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ public void testSelectAllColumns() throws SQLException {
assertTrue(resultSet.next());
assertEquals(resultSet.getString(METADATA_DIGEST_COLUMN_NAME), "212ddf97ff3fe0f6dec5e1626d92a635a55171c2");
assertEquals(resultSet.getInt(METADATA_GEN_COLUMN_NAME), 1);
assertTrue(resultSet.getInt(METADATA_TTL_COLUMN_NAME) > 0);
assertFalse(resultSet.next());
} finally {
closeQuietly(statement);
Expand All @@ -119,7 +118,6 @@ public void testSelectMetadataColumns() throws SQLException {
assertTrue(resultSet.next());
assertNull(resultSet.getObject(METADATA_DIGEST_COLUMN_NAME));
assertEquals(resultSet.getInt(METADATA_GEN_COLUMN_NAME), 1);
assertTrue(resultSet.getInt(METADATA_TTL_COLUMN_NAME) > 0);
assertEquals(resultSet.getInt("int1"), 11100);
assertFalse(resultSet.next());
} finally {
Expand Down

0 comments on commit a1fb95f

Please sign in to comment.