Skip to content

Commit 328824d

Browse files
committed
enabled intentionally failing tests
1 parent 2dacd29 commit 328824d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package com.clickhouse.jdbc;
22

3+
import com.clickhouse.client.ClickHouseServerForTest;
4+
import org.testng.annotations.AfterTest;
5+
import org.testng.annotations.BeforeTest;
6+
import org.testng.annotations.Test;
7+
38
import java.sql.Connection;
49
import java.sql.SQLException;
510
import java.sql.SQLFeatureNotSupportedException;
611
import java.util.Properties;
712

13+
import static org.testng.Assert.assertNotNull;
814
import static org.testng.Assert.assertNull;
915
import static org.testng.Assert.assertThrows;
10-
import static org.testng.Assert.assertNotNull;
11-
12-
import com.clickhouse.client.ClickHouseServerForTest;
13-
import org.testng.annotations.AfterTest;
14-
import org.testng.annotations.BeforeClass;
15-
import org.testng.annotations.Test;
1616

1717

1818
public class DataSourceTest extends JdbcIntegrationTest {

jdbc-v2/src/test/java/com/clickhouse/jdbc/metadata/DatabaseMetaDataTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,17 +183,17 @@ public void testGetServerVersions() throws Exception {
183183
}
184184
}
185185

186-
@Test(groups = { "integration" }, enabled = false)
186+
@Test(groups = { "integration" })
187187
public void testGetTypeInfo() throws Exception {
188188
Assert.fail("Not implemented");
189189
}
190190

191-
@Test(groups = { "integration" }, enabled = false)
191+
@Test(groups = { "integration" })
192192
public void testGetProcedures() throws Exception {
193193
Assert.fail("Not implemented");
194194
}
195195

196-
@Test(groups = { "integration" }, enabled = false)
196+
@Test(groups = { "integration" })
197197
public void testGetClientInfoProperties() throws Exception {
198198
try (Connection conn = getJdbcConnection()) {
199199
DatabaseMetaData dbmd = conn.getMetaData();

0 commit comments

Comments
 (0)