Skip to content

Commit

Permalink
Fix expectations of nested union test
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrimes committed Feb 26, 2024
1 parent df40ee5 commit bd6e448
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions tests/union.json
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@
],
"unionAll": [
{
"forEach": "telecom[0]",
"forEachOrNull": "telecom[0]",
"column": [
{
"name": "tel",
Expand All @@ -581,7 +581,7 @@
{
"unionAll": [
{
"forEach": "telecom[0]",
"forEachOrNull": "telecom[0]",
"column": [
{
"name": "tel",
Expand All @@ -590,7 +590,7 @@
]
},
{
"forEach": "contact.telecom[0]",
"forEachOrNull": "contact.telecom[0]",
"column": [
{
"name": "tel",
Expand Down Expand Up @@ -625,9 +625,33 @@
"id": "pt2",
"tel": "t2.1"
},
{
"id": "pt2",
"tel": null
},
{
"id": "pt3",
"tel": null
},
{
"id": "pt3",
"tel": null
},
{
"id": "pt3",
"tel": "t3.c1.1"
},
{
"id": "pt4",
"tel": null
},
{
"id": "pt4",
"tel": null
},
{
"id": "pt4",
"tel": null
}
]
},
Expand Down

0 comments on commit bd6e448

Please sign in to comment.