From 54ef6389073cd688c7f6286e1ba9f374ebe17a2e Mon Sep 17 00:00:00 2001 From: evanchooly Date: Wed, 19 Jun 2024 11:35:14 -0400 Subject: [PATCH] update the test collection name --- .../test/aggregation/stages/geoNear/example3/action.json | 2 +- .../test/aggregation/stages/geoNear/example5/action.json | 2 +- .../test/aggregation/stages/graphLookup/example1/action.json | 2 +- .../test/aggregation/stages/graphLookup/example3/action.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example3/action.json b/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example3/action.json index b15ba593060..46f2f225511 100644 --- a/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example3/action.json +++ b/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example3/action.json @@ -1,6 +1,6 @@ { $lookup: { - from: "aggtest", + from: "example_test", as: "joinedField", let: { pt: "$location" }, pipeline: [ diff --git a/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example5/action.json b/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example5/action.json index b88ddb16f42..47b1ac6cab2 100644 --- a/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example5/action.json +++ b/core/src/test/resources/dev/morphia/test/aggregation/stages/geoNear/example5/action.json @@ -1,7 +1,7 @@ [ { $lookup: { - from: "aggtest", + from: "example_test", as: "joinedField", let: { pt: "$location" }, pipeline: [ diff --git a/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example1/action.json b/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example1/action.json index edffc0d9aa3..f58cd658c8d 100644 --- a/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example1/action.json +++ b/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example1/action.json @@ -1,7 +1,7 @@ [ { $graphLookup: { - from: "aggtest", + from: "example_test", startWith: "$reportsTo", connectFromField: "reportsTo", connectToField: "name", diff --git a/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example3/action.json b/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example3/action.json index 40b6913e0ba..ac87f4f13e8 100644 --- a/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example3/action.json +++ b/core/src/test/resources/dev/morphia/test/aggregation/stages/graphLookup/example3/action.json @@ -1,7 +1,7 @@ [ { $match: { "name": "Tanya Jordan" } }, { $graphLookup: { - from: "aggtest", + from: "example_test", startWith: "$friends", connectFromField: "friends", connectToField: "name",