Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Netyyyy committed Jun 5, 2024
1 parent df875c6 commit 3b1354c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void testGetPropertiesFromGlobalProperties() {
AzureRedisPasswordlessProperties result = new AzureRedisPasswordlessProperties();
AzurePasswordlessPropertiesUtils.mergeAzureCommonProperties(globalProperties, passwordlessProperties, result);

assertEquals("https://*.cacheinfra.windows.net:10225/appid/.default", result.getScopes());
assertEquals("https://redis.azure.com/.default", result.getScopes());
assertEquals("global-client-id", result.getCredential().getClientId());
assertEquals("global-client-secret", result.getCredential().getClientSecret());
assertEquals("global-password", result.getCredential().getPassword());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
class AzureJedisPasswordlessAutoConfigurationTest {

private static final String REDIS_SCOPE_GLOBAL = "https://*.cacheinfra.windows.net:10225/appid/.default";
private static final String REDIS_SCOPE_GLOBAL = "https://redis.azure.com/.default";
private static final String REDIS_SCOPE_CHINA = "https://*.cacheinfra.windows.net.china:10225/appid/.default";
private static final String REDIS_SCOPE_GERMANY = "https://*.cacheinfra.windows.net.germany:10225/appid/.default";
private static final String REDIS_SCOPE_US_GOVERNMENT = "https://*.cacheinfra.windows.us.government.net:10225/appid/.default";
Expand Down

0 comments on commit 3b1354c

Please sign in to comment.