From cc07721d098da1166df20a4dd3c8d945e7d07b82 Mon Sep 17 00:00:00 2001 From: Chris Moesel Date: Fri, 20 Feb 2026 15:18:57 -0500 Subject: [PATCH] Fix invalid spaces in custom ucum unit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to the UCUM spec: > The full range of characters 33–126 can be used within a pair of curly braces (‘{’ and ‘}’). This means that the custom unit `{eskimo kisses}` is technically invalid (since the space character is not in the valid range). Replace the space with an underscore (_), which is allowed. --- tests/cql/CqlTypesTest.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cql/CqlTypesTest.xml b/tests/cql/CqlTypesTest.xml index 452d75c..eaeadb4 100644 --- a/tests/cql/CqlTypesTest.xml +++ b/tests/cql/CqlTypesTest.xml @@ -164,8 +164,8 @@ - 2.5589 '{eskimo kisses}' - 2.5589 '{eskimo kisses}' + 2.5589 '{eskimo_kisses}' + 2.5589 '{eskimo_kisses}'