Adapt to change in Spring Framework snapshots

pull/37013/head
Stephane Nicoll 1 year ago
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…
Cancel
Save