remove test that shouldn't have been committed

This commit is contained in:
Grahame Grieve 2022-12-05 17:56:12 +11:00
parent b778641cf6
commit 66f46bc319
1 changed files with 0 additions and 9 deletions

View File

@ -150,14 +150,5 @@ public class XhtmlNodeTest {
Assertions.assertEquals(src.trim(), xml.trim());
}
@Test
public void testParseSvgF() throws FHIRFormatError, IOException {
String src = TextFile.fileToString("/Users/grahamegrieve/work/r5/source/fhir-exchanges.svg.html");
XhtmlNode x = new XhtmlParser().parse(src, "svg");
String xml = new XhtmlComposer(false, true).compose(x);
TextFile.stringToFile(xml, "/Users/grahamegrieve/work/r5/source/fhir-exchanges.svg.html");
}
}