From 09ab68ea89b5118084b6372abfe6e03bc3ee864c Mon Sep 17 00:00:00 2001 From: jsteemann Date: Sat, 19 May 2018 21:28:08 +0200 Subject: [PATCH] fix jslint warning --- js/client/tests/authentication/auth.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/js/client/tests/authentication/auth.js b/js/client/tests/authentication/auth.js index b169694693..eca2aab78c 100644 --- a/js/client/tests/authentication/auth.js +++ b/js/client/tests/authentication/auth.js @@ -92,11 +92,10 @@ function AuthSuite() { // this will issue a request using the new user assertTrue(db._collections().length > 0); - assertTrue((db._query(`RETURN CURRENT_USER()`).toArray()[0] === expectUser)) + assertTrue(db._query(`RETURN CURRENT_USER()`).toArray()[0] === expectUser); // double check with wrong passwords - let isBroken; - isBroken = true; + let isBroken = true; try { arango.reconnect(arango.getEndpoint(), db._name(), user, "foobar2"); }