Skip to content

Commit

Permalink
Fix incorrect type assertions within tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrimes committed Apr 9, 2024
1 parent b62f8f7 commit 8ca03dd
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 8ca03dd

Please sign in to comment.