summaryrefslogtreecommitdiff
path: root/jstests/core/numberlong4.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/numberlong4.js')
-rw-r--r--jstests/core/numberlong4.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/jstests/core/numberlong4.js b/jstests/core/numberlong4.js
index 0924931efaf..f81a9599e21 100644
--- a/jstests/core/numberlong4.js
+++ b/jstests/core/numberlong4.js
@@ -1,21 +1,21 @@
-// Test handling of comparison between long longs and their double approximations in btrees - SERVER-3719.
+// Test handling of comparison between long longs and their double approximations in btrees -
+// SERVER-3719.
t = db.jstests_numberlong4;
t.drop();
-if ( 0 ) { // SERVER-3719
+if (0) { // SERVER-3719
-t.ensureIndex({x:1});
+ t.ensureIndex({x: 1});
-Random.setRandomSeed();
+ Random.setRandomSeed();
-s = "11235399833116571";
-for( i = 0; i < 10000; ++i ) {
- n = NumberLong( s + Random.randInt( 10 ) );
- t.insert( { x: ( Random.randInt( 2 ) ? n : n.floatApprox ) } );
-}
-
-// If this does not return, there is a problem with index structure.
-t.find().hint({x:1}).itcount();
+ s = "11235399833116571";
+ for (i = 0; i < 10000; ++i) {
+ n = NumberLong(s + Random.randInt(10));
+ t.insert({x: (Random.randInt(2) ? n : n.floatApprox)});
+ }
+ // If this does not return, there is a problem with index structure.
+ t.find().hint({x: 1}).itcount();
}