Skip to content

Commit

Permalink
Fix: FML test to remove newline style dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoCanessa committed Sep 4, 2024
1 parent 654b5a8 commit 25f3fd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Microsoft.Health.Fhir.MappingLanguage.Tests/FMLTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ group EncounterDiagnosis(source src, target tgt) extends BackboneElement {
map.MetadataByPath["name"].Literal!.ValueAsString.Should().Be("FhirMarkup4to5");
map.MetadataByPath["title"].Literal!.ValueAsString.Should().Be("Test FML file to exercise core parsing");
map.MetadataByPath["status"].Literal!.ValueAsString.Should().Be("draft");
map.MetadataByPath["description"].MarkdownValue!.Should().Be("This was challenging to code into the grammar.\r\nIt should all be working now though");
map.MetadataByPath["description"].MarkdownValue!.Should().Contain("This was challenging to code into the grammar.");
map.MetadataByPath["description"].MarkdownValue!.Should().Contain("It should all be working now though");
map.MetadataByPath["jurisdiction"].Literal.Should().BeNull();
map.MetadataByPath["jurisdiction.coding"].Literal.Should().BeNull();
map.MetadataByPath["jurisdiction.coding.code"].Literal!.ValueAsString.Should().Be("AQ");
Expand Down

0 comments on commit 25f3fd3

Please sign in to comment.