Skip to content

Commit 583fdec

Browse files
committed
CSHARP-1108: Use camel case for "wiredTiger".
1 parent c54690c commit 583fdec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MongoDB.DriverUnitTests/MongoCollectionTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ public void TestCreateCollectionSetStorageOptions()
611611
Assert.IsFalse(collection.Exists());
612612
var storageEngineOptions = new BsonDocument
613613
{
614-
{ "wiredtiger", new BsonDocument("configString", "block_compressor=zlib") },
614+
{ "wiredTiger", new BsonDocument("configString", "block_compressor=zlib") },
615615
{ "mmapv1", new BsonDocument() }
616616
};
617617
var options = CollectionOptions.SetStorageEngineOptions(storageEngineOptions);
@@ -698,7 +698,7 @@ public void TestCreateIndex()
698698
}
699699

700700
[Test]
701-
[RequiresServer(StorageEngines = "wiredtiger")]
701+
[RequiresServer(StorageEngines = "wiredTiger")]
702702
public void TestCreateIndexWithStorageOptions()
703703
{
704704
_collection.Drop();
@@ -708,7 +708,7 @@ public void TestCreateIndexWithStorageOptions()
708708
_collection.CreateIndex(
709709
IndexKeys.Ascending("x"),
710710
IndexOptions.SetStorageEngineOptions(
711-
new BsonDocument("wiredtiger", new BsonDocument("configString", "block_compressor=zlib"))));
711+
new BsonDocument("wiredTiger", new BsonDocument("configString", "block_compressor=zlib"))));
712712

713713
var result = _collection.GetIndexes();
714714
Assert.AreEqual(2, result.Count);

0 commit comments

Comments
 (0)