Fix checkstyle violations

This commit is contained in:
Phillip Webb
2018-05-26 00:01:45 -07:00
parent 3702da4573
commit 68ffbafbae
4 changed files with 6 additions and 6 deletions

View File

@@ -108,7 +108,7 @@ public class LdapAutoConfigurationTests {
@Test
public void templateExists() {
this.contextRunner.withPropertyValues("spring.ldap.urls:ldap://localhost:389")
.run(context -> assertThat(context).hasSingleBean(LdapTemplate.class));
.run((context) -> assertThat(context).hasSingleBean(LdapTemplate.class));
}
@Test