You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ay...@apache.org on 2011/11/21 16:19:36 UTC

svn commit: r1204537 - /cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java

Author: ay
Date: Mon Nov 21 15:19:36 2011
New Revision: 1204537

URL: http://svn.apache.org/viewvc?rev=1204537&view=rev
Log:
fixing jdk15 build for CXF-3921

Modified:
    cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java

Modified: cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java?rev=1204537&r1=1204536&r2=1204537&view=diff
==============================================================================
--- cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java (original)
+++ cxf/trunk/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java Mon Nov 21 15:19:36 2011
@@ -56,8 +56,8 @@ public class RMTxStoreConfigurationTest 
         assertNotNull(manager);
         RMTxStore store = (RMTxStore)manager.getStore();
                 
-        assertTrue(store.isTableExistsError(new SQLException("Table exists", "I6000", 288, null)));
+        assertTrue(store.isTableExistsError(new SQLException("Table exists", "I6000", 288)));
         
-        assertFalse(store.isTableExistsError(new SQLException("Unknown error", "00000", -1, null)));
+        assertFalse(store.isTableExistsError(new SQLException("Unknown error", "00000", -1)));
     }
 }