diff --git a/pom.xml b/pom.xml index da9f79f..30481dd 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.mercateo.rest rest-hateoas-client - 0.5.2-SNAPSHOT + 0.5.3-SNAPSHOT jar rest-hateoas-client Client for dynamic discovery of REST-APIs which are developed with the help of common.rest.schemagen @@ -110,7 +110,7 @@ reflections org.reflections - 0.9.10 + 0.10.2 org.glassfish.jersey.connectors diff --git a/src/test/java/com/mercateo/rest/hateoas/client/impl/OngoingResponseImpl0Test.java b/src/test/java/com/mercateo/rest/hateoas/client/impl/OngoingResponseImpl0Test.java index 561763e..d32e1d2 100644 --- a/src/test/java/com/mercateo/rest/hateoas/client/impl/OngoingResponseImpl0Test.java +++ b/src/test/java/com/mercateo/rest/hateoas/client/impl/OngoingResponseImpl0Test.java @@ -182,7 +182,7 @@ public void testCallWithRelAndTemplate_to_many_parameter_for_template() throws E Assert.fail("No IllegalStateException thrown"); } catch (IllegalStateException e) { assertEquals( - "There is more than one field for the template variable id: [java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean.id, java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean2.id]", + "There is more than one field for the template variable id: [java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean2.id, java.lang.String com.mercateo.rest.hateoas.client.impl.OngoingResponseImpl0Test$StringIdBean.id]", e.getMessage()); } }