File tree 1 file changed +0
-2
lines changed
src/test/java/com/arangodb
1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,6 @@ public void getLogs() {
285
285
@ Test
286
286
public void getLogsUpto () {
287
287
final ArangoDB arangoDB = new ArangoDB .Builder ().build ();
288
- final LogEntity logs = arangoDB .getLogs (null );
289
288
final LogEntity logsUpto = arangoDB .getLogs (new LogOptions ().upto (LogLevel .WARNING ));
290
289
assertThat (logsUpto , is (notNullValue ()));
291
290
assertThat (logsUpto .getLevel (), not (contains (LogLevel .INFO )));
@@ -294,7 +293,6 @@ public void getLogsUpto() {
294
293
@ Test
295
294
public void getLogsLevel () {
296
295
final ArangoDB arangoDB = new ArangoDB .Builder ().build ();
297
- final LogEntity logs = arangoDB .getLogs (null );
298
296
final LogEntity logsInfo = arangoDB .getLogs (new LogOptions ().level (LogLevel .INFO ));
299
297
assertThat (logsInfo , is (notNullValue ()));
300
298
assertThat (logsInfo .getLevel (), everyItem (is (LogLevel .INFO )));
You can’t perform that action at this time.
0 commit comments