Update spring-test re: deprecated queryForInt()

Now invoking JdbcTemplate's queryForObject() method instead
of the deprecated queryForInt() method within the test suite.

Issue: SPR-10257
This commit is contained in:
Sam Brannen 2013-02-28 13:46:56 +01:00
parent 2a78b97598
commit 4bdf382714
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public abstract class AbstractTransactionalAnnotatedConfigClassTests {
}
private int countRowsInTable(String tableName) {
return jdbcTemplate.queryForInt("SELECT COUNT(0) FROM " + tableName);
return jdbcTemplate.queryForObject("SELECT COUNT(0) FROM " + tableName, Integer.class);
}
private int createPerson(String name) {