Commit 5b92a027 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '1.5.x'

parents 2bdbe343 934d3368
......@@ -116,7 +116,7 @@ public class DevToolsDataSourceAutoConfiguration {
H2("jdbc:h2:mem:", "org.h2.Driver", "org.h2.jdbcx.JdbcDataSource"),
HQSQLDB("jdbc:hsqldb:mem:", "org.hsqldb.jdbcDriver",
HSQLDB("jdbc:hsqldb:mem:", "org.hsqldb.jdbcDriver",
"org.hsqldb.jdbc.JDBCDriver",
"org.hsqldb.jdbc.pool.JDBCXADataSource");
......
......@@ -69,7 +69,7 @@ public class DevToolsPooledDataSourceAutoConfigurationTests
}
@Test
public void inMemoryh2IsShutdown() throws SQLException {
public void inMemoryH2IsShutdown() throws SQLException {
ConfigurableApplicationContext context = createContext("org.h2.Driver",
"jdbc:h2:mem:test", DataSourceAutoConfiguration.class,
DataSourceSpyConfiguration.class);
......
......@@ -6170,7 +6170,7 @@ might not actually appear on the running application classpath. You can also use
[TIP]
====
If you are using `@ConditionalOnClass` or `@ConditionalOnMissingClass` as apart of a
If you are using `@ConditionalOnClass` or `@ConditionalOnMissingClass` as a part of a
meta-annotation to compose your own composed annotations you must use `name` as referring
to the class in such a case is not handled.
====
......
......@@ -33,7 +33,7 @@ class DataMongoTypeExcludeFilter extends AnnotationCustomizableTypeExcludeFilter
private final DataMongoTest annotation;
DataMongoTypeExcludeFilter(final Class<?> testClass) {
DataMongoTypeExcludeFilter(Class<?> testClass) {
this.annotation = AnnotatedElementUtils.getMergedAnnotation(testClass,
DataMongoTest.class);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment