Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Aug 8, 2013
1 parent 7ef7c6e commit 702b6ca
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -114,7 +114,7 @@ public void testTableRebuild() throws Exception {
tableFromDatabase = platform.getTableFromCache(origTable.getName(), true);
Assert.assertNotNull(tableFromDatabase);
Assert.assertEquals(2, tableFromDatabase.getColumnCount());
Assert.assertEquals(1, template.queryForLong(String.format("select count(*) from %s", tableFromDatabase.getName())));
Assert.assertEquals(1, template.queryForLong(String.format("select count(*) from %s%s%s", delimiter, tableFromDatabase.getName(), delimiter)));

}

Expand Down

0 comments on commit 702b6ca

Please sign in to comment.