File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
src/test/java/com/arangodb Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff 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 )));
You can’t perform that action at this time.
0 commit comments