Skip to content

Commit

Permalink
ConnectionIT test failure fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-vb committed Aug 2, 2024
1 parent 510486f commit 6804de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/net/snowflake/client/jdbc/ConnectionIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ public void testGetTypeMap() throws Throwable {
public void testHolderbility() throws Throwable {
try (Connection connection = getConnection()) {
try {
connection.setHoldability(0);
connection.setHoldability(1);
} catch (SQLFeatureNotSupportedException ex) {
// nop
}
Expand Down

0 comments on commit 6804de9

Please sign in to comment.