Skip to content

Commit

Permalink
move tenant ID to env var
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-maynard committed Oct 4, 2024
1 parent 4971c01 commit a6e9165
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class AzureCredentialStorageIntegrationTest {

private final String clientId = System.getenv("AZURE_CLIENT_ID");
private final String clientSecret = System.getenv("AZURE_CLIENT_SECRET");
private final String tenantId = "d479c7c9-2632-445a-b22d-7c19e68774f6";
private final String tenantId = System.getenv("AZURE_CLIENT_SECRET");

private void assumeEnvVariablesNotNull() {
Assumptions.assumeThat(Strings.isNullOrEmpty(clientId) || Strings.isNullOrEmpty(clientSecret))
Expand Down

0 comments on commit a6e9165

Please sign in to comment.