diff options
Diffstat (limited to 'jstests/core/auth2.js')
-rw-r--r-- | jstests/core/auth2.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/auth2.js b/jstests/core/auth2.js index 9c2b38f682d..2c4cff6796b 100644 --- a/jstests/core/auth2.js +++ b/jstests/core/auth2.js @@ -3,7 +3,7 @@ // SERVER-724 db.runCommand({logout : 1}); x = db.runCommand({logout : 1}); -assert.eq( 1 , x.ok , "A" ) +assert.eq( 1 , x.ok , "A" ); x = db.logout(); -assert.eq( 1 , x.ok , "B" ) +assert.eq( 1 , x.ok , "B" ); |