Adapt to change in Spring Framework snapshots
This commit is contained in:
parent
eb45aab712
commit
85b4362ec6
|
@ -89,10 +89,10 @@ class JdbcClientAutoConfigurationTests {
|
|||
|
||||
static class JdbcClientDataSourceMigrationValidator {
|
||||
|
||||
private final Integer count;
|
||||
private final Long count;
|
||||
|
||||
JdbcClientDataSourceMigrationValidator(JdbcClient jdbcClient) {
|
||||
this.count = jdbcClient.sql("SELECT COUNT(*) from CITY").query().singleValue(Integer.class);
|
||||
this.count = jdbcClient.sql("SELECT COUNT(*) from CITY").query().singleValue();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue