Polish "Added keystore type and truststore type to rabbit properties"

Closes gh-10251
This commit is contained in:
Stephane Nicoll
2017-09-18 16:43:49 +02:00
parent b70ac99bcb
commit 4c53755980
4 changed files with 11 additions and 15 deletions

View File

@@ -542,7 +542,7 @@ public class RabbitAutoConfigurationTests {
@Test
// Make sure that we at least attempt to load the store
public void enableSslWithNonexistingKeystoreShouldFail() {
public void enableSslWithNonExistingKeystoreShouldFail() {
this.contextRunner
.withUserConfiguration(TestConfiguration.class)
.withPropertyValues("spring.rabbitmq.ssl.enabled:true",
@@ -557,7 +557,7 @@ public class RabbitAutoConfigurationTests {
@Test
// Make sure that we at least attempt to load the store
public void enableSslWithNonexistingTruststoreShouldFail() {
public void enableSslWithNonExistingTrustStoreShouldFail() {
this.contextRunner
.withUserConfiguration(TestConfiguration.class)
.withPropertyValues(
@@ -587,7 +587,7 @@ public class RabbitAutoConfigurationTests {
}
@Test
public void enableSslWithInvalidTruststoreTypeShouldFail() throws Exception {
public void enableSslWithInvalidTrustStoreTypeShouldFail() throws Exception {
this.contextRunner
.withUserConfiguration(TestConfiguration.class)
.withPropertyValues(