summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/utf8_paths.js
diff options
context:
space:
mode:
authorclang-format-7.0.1 <adam.martin@10gen.com>2019-07-26 18:20:35 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2019-07-27 11:02:23 -0400
commit134a4083953270e8a11430395357fb70a29047ad (patch)
treedd428e1230e31d92b20b393dfdc17ffe7fa79cb6 /jstests/noPassthrough/utf8_paths.js
parent1e46b5049003f427047e723ea5fab15b5a9253ca (diff)
downloadmongo-134a4083953270e8a11430395357fb70a29047ad.tar.gz
SERVER-41772 Apply clang-format 7.0.1 to the codebase
Diffstat (limited to 'jstests/noPassthrough/utf8_paths.js')
-rw-r--r--jstests/noPassthrough/utf8_paths.js52
1 files changed, 26 insertions, 26 deletions
diff --git a/jstests/noPassthrough/utf8_paths.js b/jstests/noPassthrough/utf8_paths.js
index 49cb5a63bac..b7b17355457 100644
--- a/jstests/noPassthrough/utf8_paths.js
+++ b/jstests/noPassthrough/utf8_paths.js
@@ -2,36 +2,36 @@
* Test that verifies mongod can start using paths that contain UTF-8 characters that are not ASCII.
*/
(function() {
- 'use strict';
- var db_name = "ελληνικά";
- var path = MongoRunner.dataPath + "Росси́я";
-
- mkdir(path);
-
- // Test MongoD
- let testMongoD = function() {
- let options = {
- dbpath: path,
- useLogFiles: true,
- pidfilepath: path + "/pidfile",
- };
+'use strict';
+var db_name = "ελληνικά";
+var path = MongoRunner.dataPath + "Росси́я";
+
+mkdir(path);
+
+// Test MongoD
+let testMongoD = function() {
+ let options = {
+ dbpath: path,
+ useLogFiles: true,
+ pidfilepath: path + "/pidfile",
+ };
- // directoryperdb is only supported with the wiredTiger storage engine
- if (!jsTest.options().storageEngine || jsTest.options().storageEngine === "wiredTiger") {
- options["directoryperdb"] = "";
- }
+ // directoryperdb is only supported with the wiredTiger storage engine
+ if (!jsTest.options().storageEngine || jsTest.options().storageEngine === "wiredTiger") {
+ options["directoryperdb"] = "";
+ }
- let conn = MongoRunner.runMongod(options);
- assert.neq(null, conn, 'mongod was unable to start up');
+ let conn = MongoRunner.runMongod(options);
+ assert.neq(null, conn, 'mongod was unable to start up');
- let coll = conn.getCollection(db_name + ".foo");
- assert.writeOK(coll.insert({_id: 1}));
+ let coll = conn.getCollection(db_name + ".foo");
+ assert.writeOK(coll.insert({_id: 1}));
- MongoRunner.stopMongod(conn);
- };
+ MongoRunner.stopMongod(conn);
+};
- testMongoD();
+testMongoD();
- // Start a second time to test things like log rotation.
- testMongoD();
+// Start a second time to test things like log rotation.
+testMongoD();
})();