Skip to content

Commit e7ee8aa

Browse files
author
Paultagoras
committed
Update ProxyTests.java
1 parent 7d56fb3 commit e7ee8aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client-v2/src/test/java/com/clickhouse/client/ProxyTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private void createTable(String tableQuery) throws ClickHouseException {
7272

7373
@Test(groups = { "integration" }, enabled = true)
7474
public void simpleProxyTest() throws Exception {
75-
String tableName = "simple_pojo_proxy_table";
75+
String tableName = "simple_pojo_enable_proxy_table";
7676
String createSQL = SamplePOJO.generateTableCreateSQL(tableName);
7777
System.out.println(createSQL);
7878
createTable(createSQL);
@@ -95,7 +95,7 @@ public void simpleProxyTest() throws Exception {
9595

9696
@Test(groups = { "integration" }, enabled = true)
9797
public void simpleDisabledProxyTest() throws Exception {
98-
String tableName = "simple_pojo_proxy_table";
98+
String tableName = "simple_pojo_disable_proxy_table";
9999
String createSQL = SamplePOJO.generateTableCreateSQL(tableName);
100100
System.out.println(createSQL);
101101
createTable(createSQL);

0 commit comments

Comments
 (0)