Fix typo in TestDatabaseAutoConfiguration failure msg

See gh-12350
This commit is contained in:
inabajunmr
2018-03-06 04:09:46 +09:00
committed by Madhura Bhave
parent b6e09e8311
commit ddd8598e2e

View File

@@ -196,7 +196,7 @@ public class TestDatabaseAutoConfiguration {
"Failed to replace DataSource with an embedded database for tests. If "
+ "you want an embedded database please put a supported one "
+ "on the classpath or tune the replace attribute of "
+ "@AutoconfigureTestDatabase.");
+ "@AutoConfigureTestDatabase.");
return new EmbeddedDatabaseBuilder().generateUniqueName(true)
.setType(connection.getType()).build();
}