This commit is contained in:
jamesagnew 2016-06-16 08:18:36 -04:00
parent 3a0f97b6c1
commit 56ed7fcbf0
1 changed files with 1 additions and 2 deletions

View File

@ -211,7 +211,6 @@ public class GenericJaxRsClientDstu3Test {
}
@Test
@SuppressWarnings("deprecation")
public void testConformance() throws Exception {
IParser p = ourCtx.newXmlParser();
@ -228,7 +227,7 @@ public class GenericJaxRsClientDstu3Test {
//@formatter:off
Conformance resp = (Conformance)client.conformance();
Conformance resp = (Conformance)client.fetchConformance().ofType(Conformance.class).execute();
//@formatter:on
assertEquals("http://localhost:" + ourPort + "/fhir/metadata", ourRequestUri);