Skip to content

Commit 97c1539

Browse files
committed
SERVER-24939 Fix a broken js test due to changed message
1 parent 71c38ae commit 97c1539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jstests/replsets/linearizable_read_concern_parsing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ load("jstests/replsets/rslib.js");
5151
'find': 'foo',
5252
readConcern: {level: "linearizable", 'afterOpTime': {ts: Timestamp(1, 2), t: 1}}
5353
}));
54-
assert.eq(opTimeCmd.errmsg, "afterOpTime not compatible with read concern level linearizable");
54+
assert.eq(opTimeCmd.errmsg, "afterOpTime not compatible with linearizable read concern");
5555
assert.eq(opTimeCmd.code, ErrorCodes.FailedToParse);
5656

5757
}());

0 commit comments

Comments
 (0)