We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942274a commit 267b0bfCopy full SHA for 267b0bf
src/test/java/org/apache/skywalking/banyandb/v1/client/BanyanDBAuthTest.java
@@ -76,10 +76,11 @@ public void testAuthWithCorrect() throws IOException {
76
BanyanDBClient client = createClient("admin", "123456");
77
client.connect();
78
await().atMost(10, TimeUnit.SECONDS).untilAsserted(() -> {
79
+ // get api version
80
+ client.getAPIVersion();
81
// list all groups
82
List<BanyandbCommon.Group> groupList = client.findGroups();
- Assert.assertEquals(1, groupList.size());
- Assert.assertEquals("_monitoring", groupList.get(0).getMetadata().getName());
83
+ Assert.assertEquals(0, groupList.size());
84
});
85
client.close();
86
}
0 commit comments