Skip to content

Commit 934d336

Browse files
committed
Polish
See gh-8879
1 parent 3f883f1 commit 934d336

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsDataSourceAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private enum InMemoryDatabase {
116116

117117
H2("jdbc:h2:mem:", "org.h2.Driver", "org.h2.jdbcx.JdbcDataSource"),
118118

119-
HQSQLDB("jdbc:hsqldb:mem:", "org.hsqldb.jdbcDriver",
119+
HSQLDB("jdbc:hsqldb:mem:", "org.hsqldb.jdbcDriver",
120120
"org.hsqldb.jdbc.JDBCDriver",
121121
"org.hsqldb.jdbc.pool.JDBCXADataSource");
122122

spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsPooledDataSourceAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void h2ServerIsNotShutdown() throws SQLException {
6969
}
7070

7171
@Test
72-
public void inMemoryh2IsShutdown() throws SQLException {
72+
public void inMemoryH2IsShutdown() throws SQLException {
7373
ConfigurableApplicationContext context = createContext("org.h2.Driver",
7474
"jdbc:h2:mem:test", DataSourceAutoConfiguration.class,
7575
DataSourceSpyConfiguration.class);

spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/mongo/DataMongoTypeExcludeFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class DataMongoTypeExcludeFilter extends AnnotationCustomizableTypeExcludeFilter
3333

3434
private final DataMongoTest annotation;
3535

36-
DataMongoTypeExcludeFilter(final Class<?> testClass) {
36+
DataMongoTypeExcludeFilter(Class<?> testClass) {
3737
this.annotation = AnnotatedElementUtils.getMergedAnnotation(testClass,
3838
DataMongoTest.class);
3939
}

0 commit comments

Comments
 (0)