summaryrefslogtreecommitdiff
path: root/jstests/core/compare_timestamps.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/compare_timestamps.js')
-rw-r--r--jstests/core/compare_timestamps.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/jstests/core/compare_timestamps.js b/jstests/core/compare_timestamps.js
index 2440fac3fe1..b88bb003483 100644
--- a/jstests/core/compare_timestamps.js
+++ b/jstests/core/compare_timestamps.js
@@ -1,9 +1,9 @@
// SERVER-21160: Check that timestamp comparisons are unsigned
(function() {
- 'use strict';
- var t = db.compare_timestamps;
- t.drop();
- assert.writeOK(t.insert({a: new Timestamp(0xffffffff, 3), b: "non-zero"}));
- assert.writeOK(t.insert({a: new Timestamp(0, 0), b: "zero"}));
- assert.eq(t.find().sort({a: 1}).limit(1).next().b, "zero", "timestamp must compare unsigned");
+'use strict';
+var t = db.compare_timestamps;
+t.drop();
+assert.writeOK(t.insert({a: new Timestamp(0xffffffff, 3), b: "non-zero"}));
+assert.writeOK(t.insert({a: new Timestamp(0, 0), b: "zero"}));
+assert.eq(t.find().sort({a: 1}).limit(1).next().b, "zero", "timestamp must compare unsigned");
}());