summaryrefslogtreecommitdiff
path: root/jstests/core/index_create_with_nul_in_name.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_create_with_nul_in_name.js')
-rw-r--r--jstests/core/index_create_with_nul_in_name.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/jstests/core/index_create_with_nul_in_name.js b/jstests/core/index_create_with_nul_in_name.js
index c128dcc5880..c4894830fc8 100644
--- a/jstests/core/index_create_with_nul_in_name.js
+++ b/jstests/core/index_create_with_nul_in_name.js
@@ -1,14 +1,14 @@
// SERVER-16672 disallow creating indexes with NUL bytes in the name
(function() {
- 'use strict';
+'use strict';
- var coll = db.create_index_with_nul_in_name;
- coll.drop();
+var coll = db.create_index_with_nul_in_name;
+coll.drop();
- var idx = {key: {'a': 1}, name: 'foo\0bar', ns: coll.getFullName()};
+var idx = {key: {'a': 1}, name: 'foo\0bar', ns: coll.getFullName()};
- var res = coll.runCommand('createIndexes', {indexes: [idx]});
- assert.commandFailed(res, tojson(res));
- assert.eq(res.code, 67); // CannotCreateIndex
+var res = coll.runCommand('createIndexes', {indexes: [idx]});
+assert.commandFailed(res, tojson(res));
+assert.eq(res.code, 67); // CannotCreateIndex
}());