summaryrefslogtreecommitdiff
path: root/jstests/auth/show_log_auth.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/auth/show_log_auth.js')
-rw-r--r--jstests/auth/show_log_auth.js16
1 files changed, 10 insertions, 6 deletions
diff --git a/jstests/auth/show_log_auth.js b/jstests/auth/show_log_auth.js
index b318e0536ad..05df5f20610 100644
--- a/jstests/auth/show_log_auth.js
+++ b/jstests/auth/show_log_auth.js
@@ -11,14 +11,18 @@ function assertStartsWith(s, prefix) {
assert.eq(s.substr(0, prefix.length), prefix);
}
-assertStartsWith(print.captureAllOutput(function() {
- shellHelper.show('logs');
-}).output[0],
+assertStartsWith(print
+ .captureAllOutput(function() {
+ shellHelper.show('logs');
+ })
+ .output[0],
'Error while trying to show logs');
-assertStartsWith(print.captureAllOutput(function() {
- shellHelper.show('log ' + baseName);
-}).output[0],
+assertStartsWith(print
+ .captureAllOutput(function() {
+ shellHelper.show('log ' + baseName);
+ })
+ .output[0],
'Error while trying to show ' + baseName + ' log');
db.auth("admin", "pass");