Skip to content

Commit

Permalink
Merge pull request #226 from FHIR/fix-type-assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrimes authored Apr 30, 2024
2 parents 4268265 + 8ca03dd commit 419872a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/fhirpath_numbers.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@
{
"name": "add",
"path": "value.ofType(Range).low.value + value.ofType(Range).high.value",
"type": "integer"
"type": "decimal"
},
{
"name": "sub",
"path": "value.ofType(Range).high.value - value.ofType(Range).low.value",
"type": "integer"
"type": "decimal"
},
{
"name": "mul",
"path": "value.ofType(Range).low.value * value.ofType(Range).high.value",
"type": "integer"
"type": "decimal"
},
{
"name": "div",
Expand Down
2 changes: 1 addition & 1 deletion tests/fn_reference_keys.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
{
"path": "getResourceKey() = link.other.getReferenceKey(Observation)",
"name": "key_equal_ref",
"type": "string"
"type": "boolean"
}
]
}
Expand Down

0 comments on commit 419872a

Please sign in to comment.