See gh-25451
This commit is contained in:
izeye
2021-02-27 01:20:32 +09:00
committed by Stephane Nicoll
parent c35a4cc283
commit c823f44e76
7 changed files with 17 additions and 17 deletions

View File

@@ -30,8 +30,8 @@ public interface InfluxDbCustomizer {
/**
* Customize the {@link InfluxDB}.
* @param influxDB the influxDB instance to customize
* @param influxDb the InfluxDB instance to customize
*/
void customize(InfluxDB influxDB);
void customize(InfluxDB influxDb);
}

View File

@@ -87,8 +87,8 @@ class InfluxDbAutoConfigurationTests {
}
private int getReadTimeoutProperty(AssertableApplicationContext context) {
InfluxDB influxDB = context.getBean(InfluxDB.class);
Retrofit retrofit = (Retrofit) ReflectionTestUtils.getField(influxDB, "retrofit");
InfluxDB influxDb = context.getBean(InfluxDB.class);
Retrofit retrofit = (Retrofit) ReflectionTestUtils.getField(influxDb, "retrofit");
OkHttpClient callFactory = (OkHttpClient) retrofit.callFactory();
return callFactory.readTimeoutMillis();
}