Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E8A2D173DD for ; Tue, 10 Mar 2015 15:36:49 +0000 (UTC) Received: (qmail 75270 invoked by uid 500); 10 Mar 2015 15:36:49 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 75215 invoked by uid 500); 10 Mar 2015 15:36:49 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 75205 invoked by uid 99); 10 Mar 2015 15:36:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Mar 2015 15:36:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 98E58E1855; Tue, 10 Mar 2015 15:36:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: coheigea@apache.org To: commits@cxf.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Fixing casting error in test Date: Tue, 10 Mar 2015 15:36:49 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/3.0.x-fixes b8f198bea -> 280ac138a Fixing casting error in test Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/280ac138 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/280ac138 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/280ac138 Branch: refs/heads/3.0.x-fixes Commit: 280ac138a35633515e43de19ad5d8b71a66ab6e1 Parents: b8f198b Author: Colm O hEigeartaigh Authored: Tue Mar 10 15:34:30 2015 +0000 Committer: Colm O hEigeartaigh Committed: Tue Mar 10 15:35:33 2015 +0000 ---------------------------------------------------------------------- .../apache/cxf/ws/security/wss4j/SignatureConfirmationTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/280ac138/rt/ws/security/src/test/java/org/apache/cxf/ws/security/wss4j/SignatureConfirmationTest.java ---------------------------------------------------------------------- diff --git a/rt/ws/security/src/test/java/org/apache/cxf/ws/security/wss4j/SignatureConfirmationTest.java b/rt/ws/security/src/test/java/org/apache/cxf/ws/security/wss4j/SignatureConfirmationTest.java index 6ea49f1..02418a5 100644 --- a/rt/ws/security/src/test/java/org/apache/cxf/ws/security/wss4j/SignatureConfirmationTest.java +++ b/rt/ws/security/src/test/java/org/apache/cxf/ws/security/wss4j/SignatureConfirmationTest.java @@ -98,7 +98,7 @@ public class SignatureConfirmationTest extends AbstractSecurityTest { // // Save the signature for future confirmation // - List sigv = CastUtils.cast((List)msg.get(WSHandlerConstants.SEND_SIGV)); + List sigv = CastUtils.cast((List)msg.get(WSHandlerConstants.SEND_SIGV)); assertNotNull(sigv); assertTrue(sigv.size() != 0); @@ -144,7 +144,7 @@ public class SignatureConfirmationTest extends AbstractSecurityTest { private void testSignatureConfirmationResponse( - List sigSaved, + List sigSaved, List sigReceived ) throws Exception { Document doc = readDocument("wsse-request-clean.xml");