summaryrefslogtreecommitdiff
path: root/jstests/core/objid6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/objid6.js')
-rw-r--r--jstests/core/objid6.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/jstests/core/objid6.js b/jstests/core/objid6.js
index 0165d0c8e37..28be2a3fa42 100644
--- a/jstests/core/objid6.js
+++ b/jstests/core/objid6.js
@@ -1,10 +1,10 @@
(function() {
- 'use strict';
+'use strict';
- var o = new ObjectId();
- assert(o.getTimestamp);
+var o = new ObjectId();
+assert(o.getTimestamp);
- var a = new ObjectId("4c17f616a707427266a2801a");
- var b = new ObjectId("4c17f616a707428966a2801c");
- assert.eq(a.getTimestamp(), b.getTimestamp());
+var a = new ObjectId("4c17f616a707427266a2801a");
+var b = new ObjectId("4c17f616a707428966a2801c");
+assert.eq(a.getTimestamp(), b.getTimestamp());
})();