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 2BFA29FE9 for ; Fri, 30 Mar 2012 20:59:03 +0000 (UTC) Received: (qmail 92968 invoked by uid 500); 30 Mar 2012 20:59:03 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 92927 invoked by uid 500); 30 Mar 2012 20:59:03 -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 92919 invoked by uid 99); 30 Mar 2012 20:59:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Mar 2012 20:59:03 +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, 30 Mar 2012 20:59:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 96B7623888FE; Fri, 30 Mar 2012 20:58:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1307609 - /cxf/trunk/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/ClientPersistenceTest.java Date: Fri, 30 Mar 2012 20:58:41 -0000 To: commits@cxf.apache.org From: ay@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120330205841.96B7623888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ay Date: Fri Mar 30 20:58:41 2012 New Revision: 1307609 URL: http://svn.apache.org/viewvc?rev=1307609&view=rev Log: [CXF-4218] forgot to take the new systests/ws-rm Modified: cxf/trunk/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/ClientPersistenceTest.java Modified: cxf/trunk/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/ClientPersistenceTest.java URL: http://svn.apache.org/viewvc/cxf/trunk/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/ClientPersistenceTest.java?rev=1307609&r1=1307608&r2=1307609&view=diff ============================================================================== --- cxf/trunk/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/ClientPersistenceTest.java (original) +++ cxf/trunk/systests/ws-rm/src/test/java/org/apache/cxf/systest/ws/rm/ClientPersistenceTest.java Fri Mar 30 20:58:41 2012 @@ -45,7 +45,6 @@ import org.apache.cxf.testutil.recorders import org.apache.cxf.testutil.recorders.OutMessageRecorder; import org.apache.cxf.ws.addressing.VersionTransformer.Names200408; import org.apache.cxf.ws.rm.DestinationSequence; -import org.apache.cxf.ws.rm.ProtocolVariation; import org.apache.cxf.ws.rm.RM10Constants; import org.apache.cxf.ws.rm.RMManager; import org.apache.cxf.ws.rm.RMUtils; @@ -217,11 +216,11 @@ public class ClientPersistenceTest exten String id = RMUtils.getEndpointIdentifier(client.getEndpoint()); Collection dss = - store.getDestinationSequences(id, ProtocolVariation.RM10WSA200408); + store.getDestinationSequences(id); assertEquals(1, dss.size()); Collection sss = - store.getSourceSequences(id, ProtocolVariation.RM10WSA200408); + store.getSourceSequences(id); assertEquals(1, sss.size()); Collection msgs = @@ -293,11 +292,11 @@ public class ClientPersistenceTest exten String id = RMUtils.getEndpointIdentifier(client.getEndpoint()); Collection dss = - store.getDestinationSequences(id, ProtocolVariation.RM10WSA200408); + store.getDestinationSequences(id); assertEquals(1, dss.size()); Collection sss = - store.getSourceSequences(id, ProtocolVariation.RM10WSA200408); + store.getSourceSequences(id); assertEquals(1, sss.size()); int i = 0;