Skip to content

Commit 71a9b6e

Browse files
authored
Merge pull request #1635 from ClickHouse/fix_insert_tests
corrected the test group
2 parents 4f89034 + d85597c commit 71a9b6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client-v2/src/test/java/com/clickhouse/client/insert/InsertTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class InsertTests extends BaseIntegrationTest {
1919
private Client client;
2020
private InsertSettings settings;
2121

22-
@BeforeMethod(groups = { "unit" }, enabled = true)
22+
@BeforeMethod(groups = { "integration" }, enabled = true)
2323
public void setUp() {
2424
ClickHouseNode node = getServer(ClickHouseProtocol.HTTP);
2525
client = new Client.Builder()
@@ -40,7 +40,7 @@ private void createTable(String tableQuery) throws ClickHouseException {
4040
}
4141
}
4242

43-
@Test(groups = { "unit" }, enabled = true)
43+
@Test(groups = { "integration" }, enabled = true)
4444
public void insertSimplePOJOs() throws ClickHouseException, ClientException, IOException {
4545
String tableName = "simple_pojo_table";
4646
String createSQL = SamplePOJO.generateTableCreateSQL(tableName);

0 commit comments

Comments
 (0)