summaryrefslogtreecommitdiff
path: root/jstests/auth/authz_modifications_access_control.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/auth/authz_modifications_access_control.js')
-rw-r--r--jstests/auth/authz_modifications_access_control.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/jstests/auth/authz_modifications_access_control.js b/jstests/auth/authz_modifications_access_control.js
index bb294796a7f..7f7b01e12ba 100644
--- a/jstests/auth/authz_modifications_access_control.js
+++ b/jstests/auth/authz_modifications_access_control.js
@@ -5,8 +5,8 @@
function runTest(conn) {
var authzErrorCode = 13;
- conn.getDB('admin')
- .createUser({user: 'userAdmin', pwd: 'pwd', roles: ['userAdminAnyDatabase']});
+ conn.getDB('admin').createUser(
+ {user: 'userAdmin', pwd: 'pwd', roles: ['userAdminAnyDatabase']});
var userAdminConn = new Mongo(conn.host);
userAdminConn.getDB('admin').auth('userAdmin', 'pwd');
@@ -62,11 +62,7 @@ function runTest(conn) {
(function() {
jsTestLog("Testing role creation, of user-defined roles with same name as built-in roles");
- var cmdObj = {
- createRole: "readWrite",
- roles: [],
- privileges: []
- };
+ var cmdObj = {createRole: "readWrite", roles: [], privileges: []};
var res = adminUserAdmin.runCommand(cmdObj);
assert.commandFailed(res, tojson(cmdObj));