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 EA8CA99BB for ; Fri, 21 Dec 2012 15:17:31 +0000 (UTC) Received: (qmail 50131 invoked by uid 500); 21 Dec 2012 15:17:31 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 50077 invoked by uid 500); 21 Dec 2012 15:17:31 -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 50064 invoked by uid 99); 21 Dec 2012 15:17:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2012 15:17:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Dec 2012 15:17:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7F0C223889CB; Fri, 21 Dec 2012 15:17:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1424950 - /cxf/trunk/rt/ws/policy/src/test/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptorTest.java Date: Fri, 21 Dec 2012 15:17:10 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121221151710.7F0C223889CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Fri Dec 21 15:17:10 2012 New Revision: 1424950 URL: http://svn.apache.org/viewvc?rev=1424950&view=rev Log: Fix test Modified: cxf/trunk/rt/ws/policy/src/test/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptorTest.java Modified: cxf/trunk/rt/ws/policy/src/test/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptorTest.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/ws/policy/src/test/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptorTest.java?rev=1424950&r1=1424949&r2=1424950&view=diff ============================================================================== --- cxf/trunk/rt/ws/policy/src/test/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptorTest.java (original) +++ cxf/trunk/rt/ws/policy/src/test/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptorTest.java Fri Dec 21 15:17:10 2012 @@ -148,7 +148,7 @@ public class PolicyVerificationInInterce if (setupBindingOperationInfo && null == boi) { boi = control.createMock(BindingOperationInfo.class); } - EasyMock.expect(exchange.get(BindingOperationInfo.class)).andReturn(boi); + EasyMock.expect(exchange.getBindingOperationInfo()).andReturn(boi); if (!setupBindingOperationInfo) { return; }