Skip to content

Commit 05ba8c4

Browse files
author
Paultagoras
committed
Update ConnectionTest.java
1 parent 2d7a98f commit 05ba8c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jdbc-v2/src/test/java/com/clickhouse/jdbc/ConnectionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
public class ConnectionTest extends JdbcIntegrationTest {
1515

16-
@Test(groups = { "integration" })
16+
@Test(groups = { "integration" }, enabled = false)
1717
public void createAndCloseStatementTest() throws SQLException {
1818
Connection localConnection = this.getJdbcConnection();
1919
Statement statement = localConnection.createStatement();
@@ -23,7 +23,7 @@ public void createAndCloseStatementTest() throws SQLException {
2323
assertThrows(SQLFeatureNotSupportedException.class, () -> localConnection.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY, ResultSet.CLOSE_CURSORS_AT_COMMIT));
2424
}
2525

26-
@Test(groups = { "integration" })
26+
@Test(groups = { "integration" }, enabled = false)
2727
public void prepareStatementTest() throws SQLException {
2828
Connection localConnection = this.getJdbcConnection();
2929
PreparedStatement statement = localConnection.prepareStatement("SELECT 1");

0 commit comments

Comments
 (0)