summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/wt_malformed_creation_string.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/wt_malformed_creation_string.js')
-rw-r--r--jstests/noPassthrough/wt_malformed_creation_string.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/jstests/noPassthrough/wt_malformed_creation_string.js b/jstests/noPassthrough/wt_malformed_creation_string.js
index 4067cca329f..f64d45260b3 100644
--- a/jstests/noPassthrough/wt_malformed_creation_string.js
+++ b/jstests/noPassthrough/wt_malformed_creation_string.js
@@ -48,11 +48,14 @@
// 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);