From e2bc9336f9e4e3ebd6d25671b2ef1ded427809e3 Mon Sep 17 00:00:00 2001 From: James Agnew Date: Fri, 11 Sep 2015 16:27:48 -0400 Subject: [PATCH] Fix tests --- .../src/test/java/ca/uhn/fhir/jpa/demo/ExampleServerIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hapi-fhir-jpaserver-example/src/test/java/ca/uhn/fhir/jpa/demo/ExampleServerIT.java b/hapi-fhir-jpaserver-example/src/test/java/ca/uhn/fhir/jpa/demo/ExampleServerIT.java index d9f0c5a0d7e..452503162dc 100644 --- a/hapi-fhir-jpaserver-example/src/test/java/ca/uhn/fhir/jpa/demo/ExampleServerIT.java +++ b/hapi-fhir-jpaserver-example/src/test/java/ca/uhn/fhir/jpa/demo/ExampleServerIT.java @@ -71,7 +71,7 @@ public class ExampleServerIT { ourCtx.getRestfulClientFactory().setServerValidationMode(ServerValidationModeEnum.NEVER); ourCtx.getRestfulClientFactory().setSocketTimeout(1200 * 1000); - ourClient = ourCtx.newRestfulGenericClient("http://localhost:" + ourPort + "/base"); + ourClient = ourCtx.newRestfulGenericClient("http://localhost:" + ourPort + "/baseDstu2"); ourClient.registerInterceptor(new LoggingInterceptor(true)); }