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"); }