From 3167b33df67688a6f92e4ead752ff7ec4426df42 Mon Sep 17 00:00:00 2001 From: Ramon Fernandez Date: Fri, 25 Sep 2015 14:15:39 -0400 Subject: SERVER-18250 WiredTiger is not the default engine in v3.0 --- jstests/noPassthrough/wt_nojournal_skip_recovery.js | 2 +- jstests/noPassthrough/wt_nojournal_toggle.js | 2 +- 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; } -- cgit v1.2.1