File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java-cfenv-boot/src/test/java/io/pivotal/cfenv/spring/boot Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public void testRedisBootPropertiesWithTLSEnabledInCredentials() {
5757 assertThat (environment .getProperty (SPRING_DATA_REDIS + ".host" )).isEqualTo (hostname );
5858 assertThat (environment .getProperty (SPRING_DATA_REDIS + ".port" )).isEqualTo (String .valueOf (TLS_PORT ));
5959 assertThat (environment .getProperty (SPRING_DATA_REDIS + ".password" )).isEqualTo (password );
60- assertThat (environment .getProperty (SPRING_DATA_REDIS + ".ssl" )).isEqualTo ("true" );
60+ assertThat (environment .getProperty (SPRING_DATA_REDIS + ".ssl.enabled " )).isEqualTo ("true" );
6161 }
6262
6363 @ Test
@@ -67,7 +67,7 @@ public void testRedisSSlBootPropertiesWithUriInCredentials() {
6767
6868 Environment environment = getEnvironment ();
6969 commonAssertions (getEnvironment (), SPRING_DATA_REDIS );
70- assertThat (environment .getProperty (SPRING_DATA_REDIS +".ssl" )).isEqualTo ("true" );
70+ assertThat (environment .getProperty (SPRING_DATA_REDIS +".ssl.enabled " )).isEqualTo ("true" );
7171 }
7272
7373 @ Test
You can’t perform that action at this time.
0 commit comments