Skip to content

Commit

Permalink
Merge branch 'apply-rename-transformer' into add-deferred-executions-…
Browse files Browse the repository at this point in the history
…to-rename-transform
  • Loading branch information
sbarker2 committed Jun 26, 2024
2 parents 285bdaa + a11ba83 commit 2ab00db
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,8 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| }
| }
| ]
Expand All @@ -117,8 +111,14 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| }
| }
| ]
Expand All @@ -134,13 +134,13 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
* "data": {
* "user": {
* "name": "Steven",
* "profilePicture": "https://examplesite.com/user/profile_picture.jpg",
* "teamName": "The Unicorns",
* "teamMembers": [
* "Felipe",
* "Franklin",
* "Juliano"
* ]
* ],
* "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
* },
* "product": {
* "productName": "Awesome Product",
Expand Down Expand Up @@ -175,14 +175,8 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| }
| }
| ]
Expand Down Expand Up @@ -211,8 +205,14 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| }
| }
| ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "inner defer",
| "label": "outer defer",
| "data": {
| "slowField2": null
| "slowField1": null
| }
| }
| ]
Expand All @@ -68,9 +68,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "outer defer",
| "label": "inner defer",
| "data": {
| "slowField1": null
| "slowField2": null
| }
| }
| ]
Expand All @@ -86,8 +86,8 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
* "data": {
* "defer": {
* "fastField": null,
* "slowField1": null,
* "slowField2": null
* "slowField2": null,
* "slowField1": null
* }
* }
* }
Expand All @@ -113,9 +113,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "inner defer",
| "label": "outer defer",
| "data": {
| "slowField2": null
| "slowField1": null
| }
| }
| ]
Expand All @@ -129,9 +129,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "outer defer",
| "label": "inner defer",
| "data": {
| "slowField1": null
| "slowField2": null
| }
| }
| ]
Expand Down

0 comments on commit 2ab00db

Please sign in to comment.