Skip to content

Commit

Permalink
Fixing FhirPath test expectations to match the correct implementation…
Browse files Browse the repository at this point in the history
… of 'subsumes' fhirpath function.
  • Loading branch information
piotrszul committed Jan 6, 2025
1 parent 0df2b8b commit c1c9c6d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* This is a test class to explore issues related to implementation of reverseResolve and resolve
* functions.
* <p>
* This attemps to use 'purification approch' where elements that are not pure are replaced with
* This attemps to use 'purification approach' where elements that are not pure are replaced with
* pure elements in a preprocessing step that constructs the input dataset.
*/
@SpringBootUnitTest
Expand Down Expand Up @@ -88,8 +88,8 @@ void accessParentResourceInJoinedExpression() {
resultDataset.show();
new DatasetAssert(resultDataset)
.hasRowsUnordered(
RowFactory.create("1", true),
RowFactory.create("2", true),
RowFactory.create("1", sql_array(true, true, true, true)),
RowFactory.create("2", sql_array(true, true, true)),
RowFactory.create("3", null)
);
}
Expand Down

0 comments on commit c1c9c6d

Please sign in to comment.