Polish
See gh-25451
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user