diff options
-rw-r--r-- | jstests/noPassthrough/wt_malformed_creation_string.js | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/jstests/noPassthrough/wt_malformed_creation_string.js b/jstests/noPassthrough/wt_malformed_creation_string.js index f64d45260b3..4067cca329f 100644 --- a/jstests/noPassthrough/wt_malformed_creation_string.js +++ b/jstests/noPassthrough/wt_malformed_creation_string.js @@ -48,14 +48,11 @@ // Index creation with malformed string should fail for (var i = 0; i < malformedStrings.length; i++) { - assert.commandFailedWithCode( - testDB.coll.createIndex( - {a: 1}, - { - name: 'with_malformed_str', - storageEngine: {[engine]: {configString: malformedStrings[i]}} - }), - ErrorCodes.FailedToParse); + assert.commandFailedWithCode(testDB.coll.createIndex({a: 1}, { + name: 'with_malformed_str', + storageEngine: {[engine]: {configString: malformedStrings[i]}} + }), + ErrorCodes.FailedToParse); } MongoRunner.stopMongod(conn); |