Skip to content

Commit

Permalink
fix test to expect quoted numeric fields
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed May 14, 2008
1 parent ae6ea1b commit 7d0eb20
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -61,9 +61,9 @@ public class DbTriggerTest extends AbstractDatabaseTest {

final static Object[] INSERT2_VALUES = new Object[] { "here", "here", "1", null, null, Boolean.TRUE, 1, 1 };

final static String EXPECTED_INSERT1_CSV_ENDSWITH = "\"\\\\\\\\\",\"\\\"\",\"\\\"1\\\"\",,,1,1,1";
final static String EXPECTED_INSERT1_CSV_ENDSWITH = "\"\\\\\\\\\",\"\\\"\",\"\\\"1\\\"\",,,\"1\",\"1\",\"1\"";

final static String EXPECTED_INSERT2_CSV_ENDSWITH = "\"here\",\"here\",\"1\",,,1,1";
final static String EXPECTED_INSERT2_CSV_ENDSWITH = "\"here\",\"here\",\"1\",,,\"1\",\"1\"";

final static String TEST_TRIGGER_WHERE_CLAUSE = "where source_table_name='" + TEST_TRIGGERS_TABLE
+ "' and source_node_group_id='" + TestConstants.TEST_ROOT_NODE_GROUP + "' and target_node_group_id='"
Expand Down

0 comments on commit 7d0eb20

Please sign in to comment.