|
@@ -116,8 +116,6 @@ class MilvusClientTest {
|
|
|
.build();
|
|
|
client.connect(connectParam);
|
|
|
TimeUnit.SECONDS.sleep(2);
|
|
|
- // Channel should be idle
|
|
|
- assertFalse(client.isConnected());
|
|
|
// A new RPC would take the channel out of idle mode
|
|
|
assertTrue(client.listCollections().ok());
|
|
|
}
|
|
@@ -162,11 +160,6 @@ class MilvusClientTest {
|
|
|
assertThrows(ConnectFailedException.class, () -> client.connect(connectParam));
|
|
|
}
|
|
|
|
|
|
- @org.junit.jupiter.api.Test
|
|
|
- void isConnected() {
|
|
|
- assertTrue(client.isConnected());
|
|
|
- }
|
|
|
-
|
|
|
@org.junit.jupiter.api.Test
|
|
|
void createInvalidCollection() {
|
|
|
String invalidCollectionName = "╯°□°)╯";
|