diff options
author | Matt Cotter <matt.cotter@mongodb.com> | 2016-09-08 13:30:31 -0400 |
---|---|---|
committer | Matt Cotter <matt.cotter@mongodb.com> | 2016-09-08 13:30:31 -0400 |
commit | a51cbf02314c841f5685f02d73652f4963b02b1d (patch) | |
tree | 827ea53eab2f52c971334f7332e7e8405bb81fe4 /jstests/auth | |
parent | 528fd4de717fefdd6ab652bed4f1996a95c12a35 (diff) | |
download | mongo-a51cbf02314c841f5685f02d73652f4963b02b1d.tar.gz |
SERVER-25968 fix lint
Diffstat (limited to 'jstests/auth')
-rw-r--r-- | jstests/auth/lib/commands_lib.js | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/jstests/auth/lib/commands_lib.js b/jstests/auth/lib/commands_lib.js index f6cd9ee75b7..ae08ff755cc 100644 --- a/jstests/auth/lib/commands_lib.js +++ b/jstests/auth/lib/commands_lib.js @@ -1390,10 +1390,12 @@ var authCommandsLib = { skipSharded: true, expectFail: true, testcases: [ - {runOnDb: adminDbName, - roles: {__system: 1}, - privileges: [{resource: {cluster: true}, actions: ["internal"]}], - expectFail: true}, + { + runOnDb: adminDbName, + roles: {__system: 1}, + privileges: [{resource: {cluster: true}, actions: ["internal"]}], + expectFail: true + }, ] }, { @@ -1402,10 +1404,12 @@ var authCommandsLib = { skipSharded: true, expectFail: true, testcases: [ - {runOnDb: adminDbName, - roles: {__system: 1}, - privileges: [{resource: {cluster: true}, actions: ["internal"]}], - expectFail: true}, + { + runOnDb: adminDbName, + roles: {__system: 1}, + privileges: [{resource: {cluster: true}, actions: ["internal"]}], + expectFail: true + }, ] }, { @@ -1414,10 +1418,12 @@ var authCommandsLib = { skipSharded: true, expectFail: true, testcases: [ - {runOnDb: adminDbName, - roles: {__system: 1}, - privileges: [{resource: {cluster: true}, actions: ["internal"]}], - expectFail: true}, + { + runOnDb: adminDbName, + roles: {__system: 1}, + privileges: [{resource: {cluster: true}, actions: ["internal"]}], + expectFail: true + }, ] }, { |