diff options
Diffstat (limited to 'jstests/ssl/speculative-auth-replset.js')
-rw-r--r-- | jstests/ssl/speculative-auth-replset.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/jstests/ssl/speculative-auth-replset.js b/jstests/ssl/speculative-auth-replset.js index 3c10b53b678..d23ad32802b 100644 --- a/jstests/ssl/speculative-auth-replset.js +++ b/jstests/ssl/speculative-auth-replset.js @@ -37,13 +37,16 @@ const mechStats = printjson(mechStats); assert(mechStats['MONGODB-X509'] !== undefined); Object.keys(mechStats).forEach(function(mech) { - const stats = mechStats[mech].speculativeAuthenticate; + const specStats = mechStats[mech].speculativeAuthenticate; + const clusterStats = mechStats[mech].clusterAuthenticate; if (mech === 'MONGODB-X509') { - assert.gte(stats.received, 2); + assert.gte(specStats.received, 2); + assert.gte(clusterStats.received, 2); } else { - assert.eq(stats.received, 0); + assert.eq(specStats.received, 0); } - assert.eq(stats.received, stats.successful); + assert.eq(specStats.received, specStats.successful); + assert.eq(clusterStats.received, clusterStats.successful); }); admin.logout(); |