summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamon Fernandez <ramon.fernandez@mongodb.com>2015-09-25 14:15:39 -0400
committerRamon Fernandez <ramon.fernandez@mongodb.com>2015-09-25 14:15:39 -0400
commit3167b33df67688a6f92e4ead752ff7ec4426df42 (patch)
treee94007519af5797bb0889ed95a8c01cb2f5adcd2
parent8abb1c20ec6280230b67745564bdf5de48661726 (diff)
downloadmongo-3167b33df67688a6f92e4ead752ff7ec4426df42.tar.gz
SERVER-18250 WiredTiger is not the default engine in v3.0
-rw-r--r--jstests/noPassthrough/wt_nojournal_skip_recovery.js2
-rw-r--r--jstests/noPassthrough/wt_nojournal_toggle.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/wt_nojournal_skip_recovery.js b/jstests/noPassthrough/wt_nojournal_skip_recovery.js
index e742c2eabf9..52abbf916c5 100644
--- a/jstests/noPassthrough/wt_nojournal_skip_recovery.js
+++ b/jstests/noPassthrough/wt_nojournal_skip_recovery.js
@@ -7,7 +7,7 @@
'use strict';
// Skip this test if not running with the "wiredTiger" storage engine.
- if (jsTest.options().storageEngine && jsTest.options().storageEngine !== 'wiredTiger') {
+ if (jsTest.options().storageEngine !== 'wiredTiger') {
jsTest.log('Skipping test because storageEngine is not "wiredTiger"');
return;
}
diff --git a/jstests/noPassthrough/wt_nojournal_toggle.js b/jstests/noPassthrough/wt_nojournal_toggle.js
index 20236e47459..d7696c2908f 100644
--- a/jstests/noPassthrough/wt_nojournal_toggle.js
+++ b/jstests/noPassthrough/wt_nojournal_toggle.js
@@ -6,7 +6,7 @@
'use strict';
// Skip this test if not running with the "wiredTiger" storage engine.
- if (jsTest.options().storageEngine && jsTest.options().storageEngine !== 'wiredTiger') {
+ if (jsTest.options().storageEngine !== 'wiredTiger') {
jsTest.log('Skipping test because storageEngine is not "wiredTiger"');
return;
}