Merge pull request #7253 from izeye:typo-20161031

* pr/7253:
  Fix typo
This commit is contained in:
Stephane Nicoll 2016-10-31 11:38:35 +01:00
commit dc25478000
3 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ public class LoggersMvcEndpointTests {
}
@Test
public void getLoggesWhenDisabledShouldReturnNotFound() throws Exception {
public void getLoggersRootWhenDisabledShouldReturnNotFound() throws Exception {
this.context.getBean(LoggersEndpoint.class).setEnabled(false);
this.mvc.perform(get("/loggers/ROOT")).andExpect(status().isNotFound());
}

View File

@ -33,7 +33,7 @@
</executions>
<dependencies>
<dependency>
<groupId>com.example</groupid>
<groupId>com.example</groupId>
<artifactId>custom-layout</artifactId>
<version>0.0.1.BUILD-SNAPSHOT</version>
</dependency>

View File

@ -68,7 +68,7 @@ public enum DatabaseDriver {
/**
* Maria DB.
*/
MARIADB("maridb", "MySQL", "org.mariadb.jdbc.Driver",
MARIADB("mariadb", "MySQL", "org.mariadb.jdbc.Driver",
"org.mariadb.jdbc.MariaDbDataSource", "SELECT 1"),
/**