Skip to content

Commit 83cc4f3

Browse files
author
Mark
committed
fixed tests
1 parent 9ebd740 commit 83cc4f3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/java/com/arangodb/ArangoDBTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,6 @@ public void getLogs() {
285285
@Test
286286
public void getLogsUpto() {
287287
final ArangoDB arangoDB = new ArangoDB.Builder().build();
288-
final LogEntity logs = arangoDB.getLogs(null);
289288
final LogEntity logsUpto = arangoDB.getLogs(new LogOptions().upto(LogLevel.WARNING));
290289
assertThat(logsUpto, is(notNullValue()));
291290
assertThat(logsUpto.getLevel(), not(contains(LogLevel.INFO)));
@@ -294,7 +293,6 @@ public void getLogsUpto() {
294293
@Test
295294
public void getLogsLevel() {
296295
final ArangoDB arangoDB = new ArangoDB.Builder().build();
297-
final LogEntity logs = arangoDB.getLogs(null);
298296
final LogEntity logsInfo = arangoDB.getLogs(new LogOptions().level(LogLevel.INFO));
299297
assertThat(logsInfo, is(notNullValue()));
300298
assertThat(logsInfo.getLevel(), everyItem(is(LogLevel.INFO)));

0 commit comments

Comments
 (0)