Skip to content

Commit

Permalink
Use nodata type in tests properly
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 3, 2024
1 parent bac7055 commit 9fd49f9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions tests/arcsin.json5
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
},
{
"arguments": {
"x": null
"x": {"type": "nodata"}
},
"returns": null
"returns": {"type": "nodata"}
}
]
}
6 changes: 3 additions & 3 deletions tests/array_element.json5
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"index": 0,
"return_nodata": true
},
"returns": null
"returns": {"type": "nodata"}
},
{
"level": "L2",
Expand Down Expand Up @@ -130,7 +130,7 @@
"index": 2,
"return_nodata": true
},
"returns": null
"returns": {"type": "nodata"}
},
{
"level": "L2",
Expand All @@ -155,7 +155,7 @@
"label": "BO4",
"return_nodata": true
},
"returns": null
"returns": {"type": "nodata"}
},
{
"level": "L2",
Expand Down
8 changes: 4 additions & 4 deletions tests/array_find.json5
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@
"arguments": {
"data": [
1,
null,
{"type": "nodata"},
2,
null
{"type": "nodata"}
],
"value": null
"value": {"type": "nodata"}
},
"returns": null
"returns": {"type": "nodata"}
},
{
"arguments": {
Expand Down

0 comments on commit 9fd49f9

Please sign in to comment.