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 1d72a3f commit 7f357d2Copy full SHA for 7f357d2
driver/src/test/java/com/arangodb/ArangoDBAsyncTest.java
@@ -234,6 +234,7 @@ void getAccessibleDatabasesFor(ArangoDBAsync arangoDB) throws ExecutionException
234
@ParameterizedTest
235
@MethodSource("asyncArangos")
236
void createUser(ArangoDBAsync arangoDB) throws ExecutionException, InterruptedException {
237
+ assumeTrue(isSingleServer());
238
String username = "user-" + UUID.randomUUID();
239
final UserEntity result = arangoDB.createUser(username, PW, null).get();
240
assertThat(result.getUser()).isEqualTo(username);
0 commit comments