summaryrefslogtreecommitdiff
path: root/jstests/replsets/await_replication_timeout.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/await_replication_timeout.js')
-rw-r--r--jstests/replsets/await_replication_timeout.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/jstests/replsets/await_replication_timeout.js b/jstests/replsets/await_replication_timeout.js
index 93600d2ca81..2fb4e6e9471 100644
--- a/jstests/replsets/await_replication_timeout.js
+++ b/jstests/replsets/await_replication_timeout.js
@@ -32,8 +32,7 @@
// Test maxTimeMS timeout
res = testDB.runCommand(
{insert: collName, documents: [{a: 1}], writeConcern: {w: 3}, maxTimeMS: 1000});
- assert.commandFailedWithCode(res, ErrorCodes.ExceededTimeLimit);
- assert.eq(ErrorCodes.ExceededTimeLimit, res.writeConcernError.code);
+ assert.commandFailedWithCode(res, ErrorCodes.MaxTimeMSExpired);
// Test with wtimeout < maxTimeMS
res = testDB.runCommand({
@@ -52,8 +51,7 @@
writeConcern: {w: 3, wtimeout: 10 * 1000},
maxTimeMS: 1000
});
- assert.commandFailedWithCode(res, ErrorCodes.ExceededTimeLimit);
- assert.eq(ErrorCodes.ExceededTimeLimit, res.writeConcernError.code);
+ assert.commandFailedWithCode(res, ErrorCodes.MaxTimeMSExpired);
// dropDatabase respects the 'w' field when it is stronger than the default of majority.
res = testDB.runCommand({dropDatabase: 1, writeConcern: {w: 3, wtimeout: 1000}});