Repository: cxf Updated Branches: refs/heads/master a32bb0bc9 -> aad8b398e
Fix comparison to allow for Jetty 9.3 Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/44a3627b Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/44a3627b Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/44a3627b Branch: refs/heads/master Commit: 44a3627be2b22350edc80b719b9eb1e7f5ffb60d Parents: a32bb0b Author: Daniel Kulp <[email protected]> Authored: Wed Nov 11 10:10:14 2015 -0500 Committer: Daniel Kulp <[email protected]> Committed: Wed Nov 11 10:10:14 2015 -0500 ---------------------------------------------------------------------- .../src/test/java/org/apache/cxf/ext/logging/SOAPLoggingTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/44a3627b/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/SOAPLoggingTest.java ---------------------------------------------------------------------- diff --git a/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/SOAPLoggingTest.java b/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/SOAPLoggingTest.java index 2dbe150..f2af1e8 100644 --- a/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/SOAPLoggingTest.java +++ b/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/SOAPLoggingTest.java @@ -124,7 +124,7 @@ public class SOAPLoggingTest { private void checkResponseIn(LogEvent responseIn) { Assert.assertNull(responseIn.getAddress()); - Assert.assertEquals("text/xml; charset=UTF-8", responseIn.getContentType()); + Assert.assertEquals("text/xml;charset=utf-8", responseIn.getContentType().toLowerCase().replace(" ", "")); Assert.assertEquals(EventType.RESP_IN, responseIn.getType()); Assert.assertEquals(StandardCharsets.UTF_8.name(), responseIn.getEncoding()); Assert.assertNotNull(responseIn.getExchangeId());
