summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Cotter <matt.cotter@mongodb.com>2016-10-04 16:19:35 -0400
committerMatt Cotter <matt.cotter@mongodb.com>2016-10-04 16:19:35 -0400
commit84794aba3c9eb3f7d96c6fec99e967dba7a62aaa (patch)
treef2a445ae4e4acfb7022ac1ab8a8043eaaae75749
parentb114c68f6c5b8c386974922b1f4aff3bc06d9976 (diff)
downloadmongo-84794aba3c9eb3f7d96c6fec99e967dba7a62aaa.tar.gz
minor: fix lint
-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);