From 68b9dac256bae64096c4f64699e7a8dd16d05d56 Mon Sep 17 00:00:00 2001 From: Dan Gottlieb Date: Tue, 3 Oct 2023 14:45:45 -0400 Subject: [PATCH] valueInteger -> value.ofType(integer) (#159) --- tests/content/where.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/content/where.json b/tests/content/where.json index 32ea9c9..0220d6f 100644 --- a/tests/content/where.json +++ b/tests/content/where.json @@ -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" }] }, @@ -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" }] },