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",