See gh-7322
This commit is contained in:
Stephane Nicoll 2016-11-05 07:45:32 +01:00
parent e4be5c6102
commit 71bbd9faaf
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ enum AccessLevel {
/**
* Returns if the access level should allow access to the specified endpoint path.
* @param endpointPath the endpoitn path
* @param endpointPath the endpoint path
* @return {@code true} if access is allowed
*/
public boolean isAccessAllowed(String endpointPath) {

View File

@ -45,7 +45,7 @@ public class SkipSslVerificationHttpRequestFactoryTests {
public ExpectedException thrown = ExpectedException.none();
@Test
public void restCallToSelfSignedServershouldNotThrowSslException() throws Exception {
public void restCallToSelfSignedServerShouldNotThrowSslException() throws Exception {
String httpsUrl = getHttpsUrl();
SkipSslVerificationHttpRequestFactory requestFactory = new SkipSslVerificationHttpRequestFactory();
RestTemplate restTemplate = new RestTemplate(requestFactory);