Skip to content

Commit

Permalink
valueInteger -> value.ofType(integer) (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
gotdan authored Oct 3, 2023
1 parent 1e8e850 commit 68b9dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/content/where.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"view": {
"resource": "Observation",
"select": [{ "path": "id" }],
"where": [{ "path": "where(valueInteger > 11).exists()" }]
"where": [{ "path": "where(value.ofType(integer) > 11).exists()" }]
},
"expect": [{ "id": "o1" }]
},
Expand All @@ -76,7 +76,7 @@
"view": {
"resource": "Observation",
"select": [{ "path": "id" }],
"where": [{ "path": "where(valueInteger < 11).exists()" }]
"where": [{ "path": "where(value.ofType(integer) < 11).exists()" }]
},
"expect": [{ "id": "o2" }]
},
Expand Down

0 comments on commit 68b9dac

Please sign in to comment.