Skip to content

Commit fb3ce31

Browse files
committed
Updated tests after merge
1 parent b565db0 commit fb3ce31

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public void testDefaultSettings() {
333333
Assert.assertEquals(config.get(p.getKey()), p.getDefaultValue(), "Default value doesn't match");
334334
}
335335
}
336-
Assert.assertEquals(config.size(), 35); // to check everything is set. Increment when new added.
336+
Assert.assertEquals(config.size(), 36); // to check everything is set. Increment when new added.
337337
}
338338

339339
try (Client client = new Client.Builder()
@@ -366,7 +366,7 @@ public void testDefaultSettings() {
366366
.setSocketSndbuf(100000)
367367
.build()) {
368368
Map<String, String> config = client.getConfiguration();
369-
Assert.assertEquals(config.size(), 36); // to check everything is set. Increment when new added.
369+
Assert.assertEquals(config.size(), 37); // to check everything is set. Increment when new added.
370370
Assert.assertEquals(config.get(ClientConfigProperties.DATABASE.getKey()), "mydb");
371371
Assert.assertEquals(config.get(ClientConfigProperties.MAX_EXECUTION_TIME.getKey()), "10");
372372
Assert.assertEquals(config.get(ClientConfigProperties.COMPRESSION_LZ4_UNCOMPRESSED_BUF_SIZE.getKey()), "300000");
@@ -434,7 +434,7 @@ public void testWithOldDefaults() {
434434
Assert.assertEquals(config.get(p.getKey()), p.getDefaultValue(), "Default value doesn't match");
435435
}
436436
}
437-
Assert.assertEquals(config.size(), 35); // to check everything is set. Increment when new added.
437+
Assert.assertEquals(config.size(), 36); // to check everything is set. Increment when new added.
438438
}
439439
}
440440

0 commit comments

Comments
 (0)