summaryrefslogtreecommitdiff
path: root/jstests/sharding/sharding_system_namespaces.js
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2015-02-23 17:58:21 -0500
committerMathias Stearn <mathias@10gen.com>2015-02-24 11:13:15 -0500
commitaa207c8f93ca264fd292980defca1cff315f2a47 (patch)
tree3f291341f5d4c23007cba6cc1d7bebade0e7b763 /jstests/sharding/sharding_system_namespaces.js
parent5bfcf828bf5de6d01fa7f8775b1b88c4924db1ef (diff)
downloadmongo-aa207c8f93ca264fd292980defca1cff315f2a47.tar.gz
SERVER-17356 Rename 'storageEngine' to 'storage' in collection and index options
Diffstat (limited to 'jstests/sharding/sharding_system_namespaces.js')
-rw-r--r--jstests/sharding/sharding_system_namespaces.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/sharding/sharding_system_namespaces.js b/jstests/sharding/sharding_system_namespaces.js
index 7d8121da24a..a880d15a6f0 100644
--- a/jstests/sharding/sharding_system_namespaces.js
+++ b/jstests/sharding/sharding_system_namespaces.js
@@ -27,12 +27,12 @@ if (db.serverBuildInfo().bits != 32) {
var info = collectionsInfos.filter(function(c) {
return c.name == "sharding_system_namespaces";
})[0];
- assert.eq(info.options.storageEngine.wiredTiger.configString, "block_compressor=zlib");
+ assert.eq(info.options.storage.wiredTiger.configString, "block_compressor=zlib");
}
db.createCollection("sharding_system_namespaces",
{
- storageEngine: {
+ storage: {
wiredTiger: { configString: "block_compressor=zlib" }
}
});