summaryrefslogtreecommitdiff
path: root/jstests/auth/pre_auth_commands_with_sessions.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/auth/pre_auth_commands_with_sessions.js')
-rw-r--r--jstests/auth/pre_auth_commands_with_sessions.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/jstests/auth/pre_auth_commands_with_sessions.js b/jstests/auth/pre_auth_commands_with_sessions.js
index 6472910917b..0e440a01c13 100644
--- a/jstests/auth/pre_auth_commands_with_sessions.js
+++ b/jstests/auth/pre_auth_commands_with_sessions.js
@@ -40,16 +40,6 @@
db.runCommand(commandWithSession),
"failed to run command " + cmd + " with session without being logged in");
- // Test that we can run a pre-auth command with a session while
- // multiple users are logged in (and the session gets ignored)
- db.auth("lily", "pwd");
- admin.auth("admin", "pwd");
- assert.commandWorked(admin.runCommand(command),
- "failed to run command " + cmd + " with multiple users logged in");
- assert.commandWorked(
- admin.runCommand(commandWithSession),
- "failed to run command " + cmd + " with session with multiple users logged in");
-
db.logout();
admin.logout();
};