summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/logop_rollback.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthroughWithMongod/logop_rollback.js')
-rw-r--r--jstests/noPassthroughWithMongod/logop_rollback.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/jstests/noPassthroughWithMongod/logop_rollback.js b/jstests/noPassthroughWithMongod/logop_rollback.js
index cc585c59a8e..f6ff75e3ce6 100644
--- a/jstests/noPassthroughWithMongod/logop_rollback.js
+++ b/jstests/noPassthroughWithMongod/logop_rollback.js
@@ -5,7 +5,7 @@
'use strict';
function checkForLogOpRollback(coll) {
- var res = coll.runCommand({ getLog: 'global' });
+ var res = coll.runCommand({getLog: 'global'});
assert.commandWorked(res);
for (var i = res.log.length - 1; i >= 0; i--) {
@@ -30,15 +30,14 @@
// must be in 'legacy' or 'compatibility' mode
db.getMongo().forceWriteMode('compatibility');
- var res = coll.insert({ _id: new Array(1025).join('x') });
+ var res = coll.insert({_id: new Array(1025).join('x')});
assert(res.hasWriteError());
// ErrorCodes::KeyTooLong == 17280
assert.eq(17280, res.getWriteError().code);
assert(checkForLogOpRollback(coll));
- }
- finally {
+ } finally {
db.getMongo().forceWriteMode(prevWriteMode);
db.setLogLevel(prevVerbosityLevel);
}