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 3bcdfad commit e970c45Copy full SHA for e970c45
driver/src/test/java/com/arangodb/ArangoDBAsyncTest.java
@@ -97,7 +97,7 @@ void createWithNotNormalizedName(ArangoDBAsync arangoDB) throws ExecutionExcepti
97
98
final String dbName = "testDB-\u006E\u0303\u00f1";
99
String normalized = UnicodeUtils.normalize(dbName);
100
- arangoDB.createDatabase(normalized);
+ arangoDB.createDatabase(normalized).get();
101
arangoDB.db(normalized).drop().get();
102
103
Throwable thrown = catchThrowable(() -> arangoDB.createDatabase(dbName).get()).getCause();
0 commit comments