Repository: cxf Updated Branches: refs/heads/3.0.x-fixes cd95ab360 -> 3808f19a8
fix the assertEquals' param order Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f564774a Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f564774a Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f564774a Branch: refs/heads/3.0.x-fixes Commit: f564774a6347a901aad20b738296d39cd0080d84 Parents: cd95ab3 Author: Akitoshi Yoshida <[email protected]> Authored: Mon Aug 31 13:32:07 2015 +0200 Committer: Akitoshi Yoshida <[email protected]> Committed: Tue Sep 1 17:47:14 2015 +0200 ---------------------------------------------------------------------- .../jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/f564774a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java index c40f0ac..5583b5f 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java @@ -97,8 +97,8 @@ public abstract class AbstractSwagger2ServiceDescriptionTest extends AbstractBus final Response r = client.get(); assertEquals(Status.OK.getStatusCode(), r.getStatus()); JSONAssert.assertEquals( - IOUtils.readStringFromStream((InputStream)r.getEntity()), getExpectedValue("swagger2-json.txt", getPort()), + IOUtils.readStringFromStream((InputStream)r.getEntity()), false); } finally { client.close();
