Skip to content

Commit 8419f64

Browse files
committed
fixed ssl tests
1 parent 5fe92e7 commit 8419f64

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

driver/src/test/java/com/arangodb/ArangoSslTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ void connect(Protocol protocol) throws Exception {
7575
final ArangoDB arangoDB = new ArangoDB.Builder()
7676
.useProtocol(protocol)
7777
.host("localhost", 8529)
78+
.password("test")
7879
.useSsl(true)
7980
.sslContext(sc).build();
8081
final ArangoDBVersion version = arangoDB.getVersion();

driver/src/test/java/com/arangodb/async/example/ssl/SslExampleTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ void connect() throws Exception {
6969

7070
final ArangoDBAsync arangoDB = new ArangoDBAsync.Builder()
7171
.host("localhost", 8529)
72+
.password("test")
7273
.useSsl(true)
7374
.sslContext(sc).build();
7475
final ArangoDBVersion version = arangoDB.getVersion().get();

0 commit comments

Comments
 (0)