Adapt to change in Spring Framework snapshots

This commit is contained in:
Stephane Nicoll 2023-08-15 17:08:29 +02:00
parent eb45aab712
commit 85b4362ec6
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}
}