summaryrefslogtreecommitdiff
path: root/jstests/aggregation/bugs/lookup_unwind_getmore.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/aggregation/bugs/lookup_unwind_getmore.js')
-rw-r--r--jstests/aggregation/bugs/lookup_unwind_getmore.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/jstests/aggregation/bugs/lookup_unwind_getmore.js b/jstests/aggregation/bugs/lookup_unwind_getmore.js
index e15e4155136..6c8d886b78f 100644
--- a/jstests/aggregation/bugs/lookup_unwind_getmore.js
+++ b/jstests/aggregation/bugs/lookup_unwind_getmore.js
@@ -31,17 +31,17 @@
aggregate: 'source',
pipeline: [
{
- $lookup: {
- from: 'dest',
- localField: 'local',
- foreignField: 'foreign',
- as: 'matches',
- }
+ $lookup: {
+ from: 'dest',
+ localField: 'local',
+ foreignField: 'foreign',
+ as: 'matches',
+ }
},
{
- $unwind: {
- path: '$matches',
- },
+ $unwind: {
+ path: '$matches',
+ },
},
],
cursor: {