summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Pasette <dan@10gen.com>2015-08-06 14:40:23 -0400
committerDan Pasette <dan@mongodb.com>2015-08-06 14:40:23 -0400
commitda5744a4dba5bdba10e5e5fb63eb27fbf769de0d (patch)
tree58823c1f2885c23b364e0b00403f6218137b7eea
parente1547eaa68014371d1c70e32cc73e3b5ec23e480 (diff)
downloadmongo-da5744a4dba5bdba10e5e5fb63eb27fbf769de0d.tar.gz
SERVER-19719 fix rollback_collMod_fatal.js which expected a different log message
-rw-r--r--jstests/replsets/rollback_collMod_fatal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/replsets/rollback_collMod_fatal.js b/jstests/replsets/rollback_collMod_fatal.js
index 4235c39fc73..16210f95d6c 100644
--- a/jstests/replsets/rollback_collMod_fatal.js
+++ b/jstests/replsets/rollback_collMod_fatal.js
@@ -50,7 +50,7 @@ assert.writeOK(a_conn.getDB(name).foo.insert({x: 2}, options));
clearRawMongoProgramOutput();
replTest.restart(BID);
assert.soon(function() {
- return rawMongoProgramOutput().match("replSet error cannot rollback a collMod command");
+ return rawMongoProgramOutput().match("replSet error cannot rollback this collMod command");
}, "B failed to fassert");
replTest.stopSet();