summaryrefslogtreecommitdiff
path: root/jstests/core/geo_fiddly_box.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_fiddly_box.js')
-rw-r--r--jstests/core/geo_fiddly_box.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/core/geo_fiddly_box.js b/jstests/core/geo_fiddly_box.js
index f5cd3ddcc6b..4e33780112d 100644
--- a/jstests/core/geo_fiddly_box.js
+++ b/jstests/core/geo_fiddly_box.js
@@ -19,9 +19,8 @@ t.insert({"loc": [3, -1]});
// OK!
print(t.count());
-assert.eq(7,
- t.count({"loc": {"$within": {"$box": [[2, -2], [46, 2]]}}}),
- "Not all locations found!");
+assert.eq(
+ 7, t.count({"loc": {"$within": {"$box": [[2, -2], [46, 2]]}}}), "Not all locations found!");
// Test normal lookup of a small square of points as a sanity check.