Skip to content

Commit 5f6b6db

Browse files
committed
fix
1 parent 44df37b commit 5f6b6db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/apache/skywalking/banyandb/v1/client/BanyanDBAuthTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ public class BanyanDBAuthTest {
6464
.forPort(HTTP_PORT)
6565
.withHeader("Authorization", "Basic " + AUTH)
6666
.forStatusCode(200)
67-
.withStartupTimeout(Duration.ofSeconds(30)));
67+
.withStartupTimeout(Duration.ofSeconds(1000)));
6868

6969
@Test
70-
public void testAuthWithCorrect() throws BanyanDBException, IOException {
70+
public void testAuthWithCorrect() throws IOException {
7171
BanyanDBClient client = createClient("admin", "123456");
7272
client.connect();
7373
await().atMost(10, TimeUnit.SECONDS).untilAsserted(() -> {

0 commit comments

Comments
 (0)