You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2011/12/14 06:07:16 UTC

svn commit: r1214058 - /camel/branches/camel-2.8.x/tests/camel-itest/src/test/java/org/apache/camel/itest/idempotent/JdbcTableService.java

Author: davsclaus
Date: Wed Dec 14 05:07:15 2011
New Revision: 1214058

URL: http://svn.apache.org/viewvc?rev=1214058&view=rev
Log:
Fixed test.

Modified:
    camel/branches/camel-2.8.x/tests/camel-itest/src/test/java/org/apache/camel/itest/idempotent/JdbcTableService.java

Modified: camel/branches/camel-2.8.x/tests/camel-itest/src/test/java/org/apache/camel/itest/idempotent/JdbcTableService.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/tests/camel-itest/src/test/java/org/apache/camel/itest/idempotent/JdbcTableService.java?rev=1214058&r1=1214057&r2=1214058&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/tests/camel-itest/src/test/java/org/apache/camel/itest/idempotent/JdbcTableService.java (original)
+++ camel/branches/camel-2.8.x/tests/camel-itest/src/test/java/org/apache/camel/itest/idempotent/JdbcTableService.java Wed Dec 14 05:07:15 2011
@@ -39,7 +39,7 @@ public class JdbcTableService implements
         } catch (Exception e) {
             // ignore
         }
-        jdbc.execute("create table ProcessedPayments (paymentIdentifier varchar)");
+        jdbc.execute("create table ProcessedPayments (paymentIdentifier varchar(24))");
     }
 
     public void dropTable() {