Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5fc9a76

Browse files
committedJan 15, 2024
test fix
1 parent 91aff88 commit 5fc9a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎driver/src/test/java/com/arangodb/ArangoDBAsyncTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void createWithNotNormalizedName(ArangoDBAsync arangoDB) throws ExecutionExcepti
9797

9898
final String dbName = "testDB-\u006E\u0303\u00f1";
9999
String normalized = UnicodeUtils.normalize(dbName);
100-
arangoDB.createDatabase(normalized);
100+
arangoDB.createDatabase(normalized).get();
101101
arangoDB.db(normalized).drop().get();
102102

103103
Throwable thrown = catchThrowable(() -> arangoDB.createDatabase(dbName).get()).getCause();

0 commit comments

Comments
 (0)
Please sign in to comment.