Skip to content

Commit e75367d

Browse files
committed
fix tests
1 parent 14545be commit e75367d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-functional/src/test/java/com/arangodb/ArangoDBAsyncTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ void setLogLevel(ArangoDBAsync arangoDB) throws ExecutionException, InterruptedE
534534
assertThat(logLevel.getAgency()).isEqualTo(LogLevelEntity.LogLevel.ERROR);
535535
} finally {
536536
entity.setAgency(LogLevelEntity.LogLevel.INFO);
537-
arangoDB.setLogLevel(entity);
537+
arangoDB.setLogLevel(entity).get();
538538
}
539539
}
540540

@@ -571,7 +571,7 @@ void logLevelWithServerId(ArangoDBAsync arangoDB) throws ExecutionException, Int
571571
assertThat(arangoDB.getLogLevel(options).get().getGraphs()).isEqualTo(LogLevelEntity.LogLevel.ERROR);
572572
} finally {
573573
entity.setGraphs(LogLevelEntity.LogLevel.INFO);
574-
arangoDB.setLogLevel(entity);
574+
arangoDB.setLogLevel(entity).get();
575575
}
576576
}
577577

0 commit comments

Comments
 (0)